mdts 0.8.1 → 0.9.0
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 +5 -0
- package/dist/constants.js +33 -0
- package/dist/frontend/bundle.js +149 -23
- package/dist/frontend/markdown.css +25 -47
- package/dist/server/routes/filetree.js +9 -9
- package/dist/server/watcher.js +17 -46
- package/dist/utils/logger.js +1 -1
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -57,3 +57,8 @@ npx mdts <directory> --host 0.0.0.0 --port 3000 --silent
|
|
|
57
57
|
- [Screenshots](docs/screenshots.md)
|
|
58
58
|
- [Comparison with other tools](docs/comparison.md)
|
|
59
59
|
- [FAQ](docs/faq.md)
|
|
60
|
+
|
|
61
|
+
## Contributing
|
|
62
|
+
|
|
63
|
+
Found a bug? Have an idea? Want to send a PR?
|
|
64
|
+
See [CONTRIBUTING.md](./CONTRIBUTING.md) for details — we'd love to have your help!
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.EXCLUDED_DIRECTORIES = void 0;
|
|
4
|
+
exports.EXCLUDED_DIRECTORIES = [
|
|
5
|
+
'node_modules',
|
|
6
|
+
'vendor',
|
|
7
|
+
'venv',
|
|
8
|
+
'env',
|
|
9
|
+
'site-packages',
|
|
10
|
+
'Pods',
|
|
11
|
+
'Carthage',
|
|
12
|
+
'__pycache__',
|
|
13
|
+
'dist',
|
|
14
|
+
'build',
|
|
15
|
+
'out',
|
|
16
|
+
'coverage',
|
|
17
|
+
'tmp',
|
|
18
|
+
'gen',
|
|
19
|
+
'DerivedData',
|
|
20
|
+
'xcuserdata',
|
|
21
|
+
'lib-cov',
|
|
22
|
+
'logs',
|
|
23
|
+
'pids',
|
|
24
|
+
'.git',
|
|
25
|
+
'.svn',
|
|
26
|
+
'.hg',
|
|
27
|
+
'.idea',
|
|
28
|
+
'.idea_modules',
|
|
29
|
+
'.vscode',
|
|
30
|
+
'.vscode-test',
|
|
31
|
+
'.gradle',
|
|
32
|
+
'.grunt',
|
|
33
|
+
];
|