devbonzai 2.0.9 → 2.1.1
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/cli.js +7 -1785
- package/package.json +5 -1
- package/templates/ignore.txt +53 -0
- package/templates/receiver.js +1729 -0
package/package.json
CHANGED
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "devbonzai",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.1.1",
|
|
4
4
|
"description": "Quickly set up a local file server in any repository for browser-based file access",
|
|
5
5
|
"main": "cli.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"devchart": "./cli.js"
|
|
8
8
|
},
|
|
9
|
+
"files": [
|
|
10
|
+
"cli.js",
|
|
11
|
+
"templates/"
|
|
12
|
+
],
|
|
9
13
|
"scripts": {
|
|
10
14
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
11
15
|
},
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# Ignore patterns for file listing
|
|
2
|
+
# Lines starting with # are comments
|
|
3
|
+
# Use * for wildcards and ** for recursive patterns
|
|
4
|
+
|
|
5
|
+
# Dependencies
|
|
6
|
+
node_modules/
|
|
7
|
+
package.json
|
|
8
|
+
package-lock.json
|
|
9
|
+
|
|
10
|
+
# IDE and editor files
|
|
11
|
+
.vscode/
|
|
12
|
+
.idea/
|
|
13
|
+
*.swp
|
|
14
|
+
*.swo
|
|
15
|
+
|
|
16
|
+
# OS generated files
|
|
17
|
+
.DS_Store
|
|
18
|
+
.DS_Store?
|
|
19
|
+
._*
|
|
20
|
+
.Spotlight-V100
|
|
21
|
+
.Trashes
|
|
22
|
+
ehthumbs.db
|
|
23
|
+
Thumbs.db
|
|
24
|
+
|
|
25
|
+
# Environment and config files
|
|
26
|
+
.env
|
|
27
|
+
.env.local
|
|
28
|
+
.env.production
|
|
29
|
+
.env.staging
|
|
30
|
+
|
|
31
|
+
# Version control
|
|
32
|
+
.git/
|
|
33
|
+
.gitignore
|
|
34
|
+
.ignore
|
|
35
|
+
|
|
36
|
+
# Logs
|
|
37
|
+
*.log
|
|
38
|
+
logs/
|
|
39
|
+
|
|
40
|
+
# Build outputs
|
|
41
|
+
dist/
|
|
42
|
+
build/
|
|
43
|
+
*.min.js
|
|
44
|
+
*.min.css
|
|
45
|
+
|
|
46
|
+
# Temporary files
|
|
47
|
+
*.tmp
|
|
48
|
+
*.temp
|
|
49
|
+
|
|
50
|
+
# Project-specific files
|
|
51
|
+
receiver.js
|
|
52
|
+
bonzai/
|
|
53
|
+
|