nero-init 1.0.2 → 1.0.4
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/dist/templates/cli/_gitignore +25 -0
- package/dist/templates/cli/package.json +2 -2
- package/dist/templates/cli/src/cli/options.ts +1 -0
- package/dist/templates/library/_gitignore +25 -0
- package/dist/templates/library/package.json +2 -2
- package/package.json +1 -1
- /package/dist/templates/cli/{eslint.config.ts → eslint.config.js} +0 -0
- /package/dist/templates/library/{eslint.config.ts → eslint.config.js} +0 -0
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# dependencies
|
|
2
|
+
node_modules/
|
|
3
|
+
|
|
4
|
+
# build output
|
|
5
|
+
dist/
|
|
6
|
+
|
|
7
|
+
# env files
|
|
8
|
+
.env
|
|
9
|
+
.env.*
|
|
10
|
+
!.env.example
|
|
11
|
+
|
|
12
|
+
# npm / package artifacts
|
|
13
|
+
*.tgz
|
|
14
|
+
|
|
15
|
+
# logs
|
|
16
|
+
npm-debug.log*
|
|
17
|
+
pnpm-debug.log*
|
|
18
|
+
yarn-debug.log*
|
|
19
|
+
yarn-error.log*
|
|
20
|
+
|
|
21
|
+
# OS / editor junk
|
|
22
|
+
.DS_Store
|
|
23
|
+
.idea/
|
|
24
|
+
.vscode/
|
|
25
|
+
*.swp
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"test": "vitest",
|
|
20
20
|
"format": "prettier --write .",
|
|
21
21
|
"format:check": "prettier --check .",
|
|
22
|
-
"lint": "eslint . --config
|
|
23
|
-
"lint:fix": "eslint . --fix
|
|
22
|
+
"lint": "eslint . --config",
|
|
23
|
+
"lint:fix": "eslint . --fix",
|
|
24
24
|
"prepublishOnly": "npm run build",
|
|
25
25
|
"postbuild": "chmod +x dist/index.js"
|
|
26
26
|
},
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# dependencies
|
|
2
|
+
node_modules/
|
|
3
|
+
|
|
4
|
+
# build output
|
|
5
|
+
dist/
|
|
6
|
+
|
|
7
|
+
# env files
|
|
8
|
+
.env
|
|
9
|
+
.env.*
|
|
10
|
+
!.env.example
|
|
11
|
+
|
|
12
|
+
# npm / package artifacts
|
|
13
|
+
*.tgz
|
|
14
|
+
|
|
15
|
+
# logs
|
|
16
|
+
npm-debug.log*
|
|
17
|
+
pnpm-debug.log*
|
|
18
|
+
yarn-debug.log*
|
|
19
|
+
yarn-error.log*
|
|
20
|
+
|
|
21
|
+
# OS / editor junk
|
|
22
|
+
.DS_Store
|
|
23
|
+
.idea/
|
|
24
|
+
.vscode/
|
|
25
|
+
*.swp
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"test": "vitest",
|
|
20
20
|
"format": "prettier --write .",
|
|
21
21
|
"format:check": "prettier --check .",
|
|
22
|
-
"lint": "eslint .
|
|
23
|
-
"lint:fix": "eslint . --fix
|
|
22
|
+
"lint": "eslint .",
|
|
23
|
+
"lint:fix": "eslint . --fix",
|
|
24
24
|
"prepublishOnly": "npm run build"
|
|
25
25
|
},
|
|
26
26
|
"engines": {
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|