devbonzai 2.1.3 → 2.1.5
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/package.json +1 -1
- package/templates/ignore.txt +53 -0
- package/templates/receiver.js +1799 -0
package/package.json
CHANGED
|
@@ -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
|
+
|