luxlabs 1.0.8 → 1.0.9
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.
|
@@ -44,6 +44,13 @@ function writeBoilerplateFiles(targetDir) {
|
|
|
44
44
|
}
|
|
45
45
|
|
|
46
46
|
copyDirRecursive(templatesDir, targetDir);
|
|
47
|
+
|
|
48
|
+
// Rename gitignore.template to .gitignore (npm ignores dotfiles in packages)
|
|
49
|
+
const gitignoreTemplate = path.join(targetDir, 'gitignore.template');
|
|
50
|
+
const gitignoreDest = path.join(targetDir, '.gitignore');
|
|
51
|
+
if (fs.existsSync(gitignoreTemplate)) {
|
|
52
|
+
fs.renameSync(gitignoreTemplate, gitignoreDest);
|
|
53
|
+
}
|
|
47
54
|
}
|
|
48
55
|
|
|
49
56
|
module.exports = {
|
package/package.json
CHANGED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# Dependencies
|
|
2
|
+
node_modules/
|
|
3
|
+
.pnp
|
|
4
|
+
.pnp.js
|
|
5
|
+
|
|
6
|
+
# Build outputs
|
|
7
|
+
.next/
|
|
8
|
+
out/
|
|
9
|
+
build/
|
|
10
|
+
dist/
|
|
11
|
+
|
|
12
|
+
# Debug
|
|
13
|
+
npm-debug.log*
|
|
14
|
+
yarn-debug.log*
|
|
15
|
+
yarn-error.log*
|
|
16
|
+
|
|
17
|
+
# Local env files
|
|
18
|
+
.env
|
|
19
|
+
.env.local
|
|
20
|
+
.env.development.local
|
|
21
|
+
.env.test.local
|
|
22
|
+
.env.production.local
|
|
23
|
+
|
|
24
|
+
# Vercel
|
|
25
|
+
.vercel
|
|
26
|
+
|
|
27
|
+
# TypeScript
|
|
28
|
+
*.tsbuildinfo
|
|
29
|
+
next-env.d.ts
|
|
30
|
+
|
|
31
|
+
# IDE
|
|
32
|
+
.idea/
|
|
33
|
+
.vscode/
|
|
34
|
+
*.swp
|
|
35
|
+
*.swo
|
|
36
|
+
|
|
37
|
+
# OS
|
|
38
|
+
.DS_Store
|
|
39
|
+
Thumbs.db
|
|
40
|
+
|
|
41
|
+
# Testing
|
|
42
|
+
coverage/
|