create-arkos 1.5.4-beta → 1.5.6-beta

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-arkos",
3
- "version": "1.5.4-beta",
3
+ "version": "1.5.6-beta",
4
4
  "type": "module",
5
5
  "description": "CLI for creating Arkos.js projects, see docs at www.arkosjs.com",
6
6
  "bin": {
@@ -8,7 +8,7 @@
8
8
  },
9
9
  "scripts": {
10
10
  "test": "vitest --coverage",
11
- "build": "rimraf dist && tsc",
11
+ "build": "npx rimraf dist && tsc",
12
12
  "dev": "ts-node src/index.ts",
13
13
  "postbuia": "ts-node scripts/postbuild/index.ts",
14
14
  "postbuild": "npx tsx scripts/postbuild/fix-esm-imports.ts",
@@ -32,6 +32,7 @@
32
32
  "@types/inquirer": "^8.1.0",
33
33
  "@types/node": "^16.18.126",
34
34
  "@vitest/coverage-v8": "3.2.4",
35
+ "rimraf": "^6.1.3",
35
36
  "ts-node": "^10.9.2",
36
37
  "tsx": "^4.21.0",
37
38
  "typescript": "^4.9.5",
@@ -11,5 +11,5 @@
11
11
  "checkJs": false
12
12
  },
13
13
  "include": ["src/**/*.js", "src/**/*.jsx", "arkos.config.js"],
14
- "exclude": ["node_modules", ".build", "src/**/__tests__/**", "src/**/*.test.js"]
14
+ "exclude": ["node_modules", ".build", "src/**/__tests__/**", "src/**/*.test", "src/**/*.spec"]
15
15
  }
@@ -26,7 +26,7 @@
26
26
  "prisma": "^6.19.2"
27
27
  },
28
28
  "dependencies": {
29
- "arkos": "^1.5.4-beta",
29
+ "arkos": "^1.5.6-beta",
30
30
  "express": "^4.22.1",
31
31
  "@scalar/express-api-reference": "^0.8.35",
32
32
  "@prisma/client": "^6.19.2"{{#if validation.type}},{{/if}}
@@ -14,8 +14,8 @@
14
14
  "emitDecoratorMetadata": true,
15
15
  "forceConsistentCasingInFileNames": true
16
16
  },
17
- "include": ["src/**/*.ts", "src/**/*.tsx", "arkos.config.ts"],
18
- "exclude": ["node_modules", ".build", "src/**/__tests__/**", "src/**/*.test.ts"],
17
+ "include": ["src/**/*.ts", "src/**/*.js", "src/**/*.tsx", "src/**/*.jsx", "arkos.config.ts"],
18
+ "exclude": ["node_modules", ".build", "src/**/__tests__/**", "src/**/*.test", "src/**/*.spec"],
19
19
  "watchOptions": {
20
20
  "excludeDirectories": ["**/node_modules", "dist", "temp", "build", ".build"]
21
21
  }