mnfst-starter 1.5.35 → 1.5.36
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/create-starter.js +9 -11
- package/package.json +1 -1
- package/templates/.gitignore +0 -91
package/create-starter.js
CHANGED
|
@@ -34,25 +34,23 @@ try {
|
|
|
34
34
|
// Create project directory
|
|
35
35
|
fs.mkdirSync(projectPath, { recursive: true });
|
|
36
36
|
|
|
37
|
-
// Copy all files from starter template
|
|
37
|
+
// Copy all files from starter template (must match templates/starter; exclude local-only e.g. bs-config.js)
|
|
38
38
|
const starterDir = path.join(__dirname, 'templates');
|
|
39
39
|
const filesToCopy = [
|
|
40
|
-
'index.html',
|
|
41
40
|
'components',
|
|
42
|
-
'data',
|
|
43
|
-
'scripts',
|
|
44
|
-
'styles',
|
|
45
41
|
'icons',
|
|
46
|
-
'
|
|
42
|
+
'_redirects',
|
|
47
43
|
'.gitignore',
|
|
48
|
-
'
|
|
49
|
-
'
|
|
44
|
+
'favicon.ico',
|
|
45
|
+
'index.html',
|
|
50
46
|
'LICENSE.md',
|
|
47
|
+
'locales.csv',
|
|
48
|
+
'manifest.json',
|
|
49
|
+
'manifest.theme.css',
|
|
51
50
|
'privacy.md',
|
|
52
51
|
'README.md',
|
|
53
|
-
'
|
|
54
|
-
'
|
|
55
|
-
'.htaccess'
|
|
52
|
+
'robots.txt',
|
|
53
|
+
'sitemap.xml'
|
|
56
54
|
];
|
|
57
55
|
|
|
58
56
|
filesToCopy.forEach(file => {
|
package/package.json
CHANGED
package/templates/.gitignore
DELETED
|
@@ -1,91 +0,0 @@
|
|
|
1
|
-
# Dependencies (if you add them later)
|
|
2
|
-
node_modules/
|
|
3
|
-
npm-debug.log*
|
|
4
|
-
yarn-debug.log*
|
|
5
|
-
yarn-error.log*
|
|
6
|
-
|
|
7
|
-
# Build outputs (if you add a build process)
|
|
8
|
-
dist/
|
|
9
|
-
build/
|
|
10
|
-
*.tgz
|
|
11
|
-
|
|
12
|
-
# Development files
|
|
13
|
-
.vscode/
|
|
14
|
-
.idea/
|
|
15
|
-
*.swp
|
|
16
|
-
*.swo
|
|
17
|
-
*~
|
|
18
|
-
bs-config.js
|
|
19
|
-
|
|
20
|
-
# OS generated files
|
|
21
|
-
.DS_Store
|
|
22
|
-
.DS_Store?
|
|
23
|
-
._*
|
|
24
|
-
.Spotlight-V100
|
|
25
|
-
.Trashes
|
|
26
|
-
ehthumbs.db
|
|
27
|
-
Thumbs.db
|
|
28
|
-
|
|
29
|
-
# Temporary files
|
|
30
|
-
*.tmp
|
|
31
|
-
*.temp
|
|
32
|
-
|
|
33
|
-
# Logs
|
|
34
|
-
logs
|
|
35
|
-
*.log
|
|
36
|
-
# Runtime data
|
|
37
|
-
pids
|
|
38
|
-
*.pid
|
|
39
|
-
*.seed
|
|
40
|
-
*.pid.lock
|
|
41
|
-
|
|
42
|
-
# Coverage directory used by tools like istanbul
|
|
43
|
-
coverage/
|
|
44
|
-
|
|
45
|
-
# nyc test coverage
|
|
46
|
-
.nyc_output
|
|
47
|
-
|
|
48
|
-
# Dependency directories
|
|
49
|
-
jspm_packages/
|
|
50
|
-
|
|
51
|
-
# Optional npm cache directory
|
|
52
|
-
.npm
|
|
53
|
-
|
|
54
|
-
# Optional REPL history
|
|
55
|
-
.node_repl_history
|
|
56
|
-
|
|
57
|
-
# Output of 'npm pack'
|
|
58
|
-
*.tgz
|
|
59
|
-
|
|
60
|
-
# Yarn Integrity file
|
|
61
|
-
.yarn-integrity
|
|
62
|
-
|
|
63
|
-
# dotenv environment variables file
|
|
64
|
-
.env
|
|
65
|
-
.env.local
|
|
66
|
-
.env.development.local
|
|
67
|
-
.env.test.local
|
|
68
|
-
.env.production.local
|
|
69
|
-
|
|
70
|
-
# parcel-bundler cache (https://parceljs.org/)
|
|
71
|
-
.cache
|
|
72
|
-
.parcel-cache
|
|
73
|
-
|
|
74
|
-
# next.js build output
|
|
75
|
-
.next
|
|
76
|
-
|
|
77
|
-
# nuxt.js build output
|
|
78
|
-
.nuxt
|
|
79
|
-
|
|
80
|
-
# vuepress build output
|
|
81
|
-
.vuepress/dist
|
|
82
|
-
|
|
83
|
-
# Serverless directories
|
|
84
|
-
.serverless
|
|
85
|
-
|
|
86
|
-
# FuseBox cache
|
|
87
|
-
.fusebox/
|
|
88
|
-
|
|
89
|
-
# DynamoDB Local files
|
|
90
|
-
.dynamodb/
|
|
91
|
-
|