todido.io 0.0.4-alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +26 -0
- package/asset-manifest.json +15 -0
- package/index.html +1 -0
- package/index.js +47365 -0
- package/manifest.json +25 -0
- package/package.json +10 -0
- package/static/css/main.e6c13ad2.css +2 -0
- package/static/css/main.e6c13ad2.css.map +1 -0
- package/static/js/453.686f818e.chunk.js +2 -0
- package/static/js/453.686f818e.chunk.js.map +1 -0
- package/static/js/main.5c9bb313.js +3 -0
- package/static/js/main.5c9bb313.js.LICENSE.txt +49 -0
- package/static/js/main.5c9bb313.js.map +1 -0
package/README.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# todido.io
|
|
2
|
+
|
|
3
|
+
A command line tool to annotate source code with TODOs and to explore their contexts.
|
|
4
|
+
|
|
5
|
+
Homepage: [APP_HOME_PAGE](https://todidio.io)
|
|
6
|
+
|
|
7
|
+
## Usages
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npx todido.io@latest -- --root <project-src-root> --port <port>
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Example:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npx todido.io@latest@latest -- --root src/ --port 3000
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Legal notice
|
|
20
|
+
|
|
21
|
+
This software is provided as-is without warranty of any kind. It is proprietary and
|
|
22
|
+
confidential.
|
|
23
|
+
|
|
24
|
+
Unauthorized use, distribution, or reverse engineering is prohibited.
|
|
25
|
+
|
|
26
|
+
By using this app, you accept these conditions.
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"files": {
|
|
3
|
+
"main.css": "/static/css/main.e6c13ad2.css",
|
|
4
|
+
"main.js": "/static/js/main.5c9bb313.js",
|
|
5
|
+
"static/js/453.686f818e.chunk.js": "/static/js/453.686f818e.chunk.js",
|
|
6
|
+
"index.html": "/index.html",
|
|
7
|
+
"main.e6c13ad2.css.map": "/static/css/main.e6c13ad2.css.map",
|
|
8
|
+
"main.5c9bb313.js.map": "/static/js/main.5c9bb313.js.map",
|
|
9
|
+
"453.686f818e.chunk.js.map": "/static/js/453.686f818e.chunk.js.map"
|
|
10
|
+
},
|
|
11
|
+
"entrypoints": [
|
|
12
|
+
"static/css/main.e6c13ad2.css",
|
|
13
|
+
"static/js/main.5c9bb313.js"
|
|
14
|
+
]
|
|
15
|
+
}
|
package/index.html
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><script defer="defer" src="/static/js/main.5c9bb313.js"></script><link href="/static/css/main.e6c13ad2.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><script>window.base_url=""</script><div id="root"></div></body></html>
|