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.
@@ -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 eslint.config.ts",
23
- "lint:fix": "eslint . --fix --config eslint.config.ts",
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
  },
@@ -4,6 +4,7 @@ import pkg from '../../package.json' with { type: 'json' }
4
4
  function printHelp(): void {
5
5
  console.log(`
6
6
  ${pkg.name} - a cli tool
7
+
7
8
  Usage:
8
9
  ${pkg.name} [options]
9
10
 
@@ -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 eslint.config.ts",
23
- "lint:fix": "eslint . --fix --config eslint.config.ts",
22
+ "lint": "eslint .",
23
+ "lint:fix": "eslint . --fix",
24
24
  "prepublishOnly": "npm run build"
25
25
  },
26
26
  "engines": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nero-init",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "Project scaffold for CLI, library and Web templates.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",