create-blocklet 0.9.19 → 0.9.20

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-blocklet",
3
- "version": "0.9.19",
3
+ "version": "0.9.20",
4
4
  "exports": "./index.js",
5
5
  "type": "module",
6
6
  "repository": "git@github.com:blocklet/create-blocklet.git",
@@ -77,7 +77,7 @@
77
77
  "rimraf": "^5.0.10",
78
78
  "simple-git-hooks": "^2.11.1",
79
79
  "vite": "^5.4.8",
80
- "vite-plugin-blocklet": "^0.9.19",
80
+ "vite-plugin-blocklet": "^0.9.20",
81
81
  "vite-plugin-svgr": "^4.2.0",
82
82
  "zx": "^8.1.8"
83
83
  },
@@ -53,7 +53,7 @@
53
53
  "simple-git-hooks": "^2.11.1",
54
54
  "vite": "^5.4.8",
55
55
  "vite-node": "^2.1.1",
56
- "vite-plugin-blocklet": "^0.9.19",
56
+ "vite-plugin-blocklet": "^0.9.20",
57
57
  "vite-plugin-require": "^1.2.14",
58
58
  "vite-plugin-svgr": "^4.2.0",
59
59
  "zx": "^8.1.8"
@@ -9,7 +9,7 @@
9
9
  "lint:fix": "npm run lint -- --fix",
10
10
  "build": "nest build",
11
11
  "dev": "blocklet dev",
12
- "start": "NODE_ENV=development && nest start --watch",
12
+ "start": "NODE_OPTIONS='--allow-child-process' && nest start --watch",
13
13
  "clean": "node scripts/build-clean.mjs",
14
14
  "bundle": "npm run clean && blocklet bundle --zip --create-release",
15
15
  "deploy": "npm run bundle && blocklet deploy .blocklet/bundle",
@@ -37,9 +37,9 @@
37
37
  "dependencies": {
38
38
  "@arcblock/did-auth-storage-nedb": "^1.7.1",
39
39
  "@blocklet/sdk": "^1.16.38",
40
- "@nestjs/common": "^10.4.4",
41
- "@nestjs/core": "^10.4.4",
42
- "@nestjs/platform-express": "^10.4.4",
40
+ "@nestjs/common": "^11.0.1",
41
+ "@nestjs/core": "^11.0.1",
42
+ "@nestjs/platform-express": "^11.0.1",
43
43
  "@ocap/client": "^1.19.9",
44
44
  "dotenv-flow": "^4.1.0",
45
45
  "express": "^4.21.0",
@@ -48,11 +48,11 @@
48
48
  },
49
49
  "devDependencies": {
50
50
  "@arcblock/eslint-config-base": "^0.3.3",
51
- "@nestjs/cli": "^10.4.5",
52
- "@nestjs/schematics": "^10.1.4",
51
+ "@nestjs/cli": "^11.0.0",
52
+ "@nestjs/schematics": "^11.0.0",
53
53
  "@trivago/prettier-plugin-sort-imports": "^4.3.0",
54
- "@types/express": "^4.17.21",
55
- "@types/node": "^20.16.10",
54
+ "@types/express": "^5.0.0",
55
+ "@types/node": "^22.10.7",
56
56
  "@typescript-eslint/eslint-plugin": "^7.18.0",
57
57
  "@typescript-eslint/parser": "^7.18.0",
58
58
  "bumpp": "^9.6.1",
@@ -65,7 +65,7 @@
65
65
  "source-map-support": "^0.5.21",
66
66
  "ts-node": "^10.9.2",
67
67
  "tsconfig-paths": "^4.2.0",
68
- "typescript": "^5.6.2",
68
+ "typescript": "^5.7.3",
69
69
  "zx": "^8.1.8"
70
70
  },
71
71
  "simple-git-hooks": {
@@ -1,9 +1,4 @@
1
1
  {
2
2
  "extends": "./tsconfig.json",
3
- "exclude": [
4
- "node_modules",
5
- "dist",
6
- "test",
7
- "**/*spec.ts"
8
- ]
3
+ "exclude": ["node_modules", "test", "dist", "**/*spec.ts"]
9
4
  }
@@ -6,11 +6,16 @@
6
6
  "emitDecoratorMetadata": true,
7
7
  "experimentalDecorators": true,
8
8
  "allowSyntheticDefaultImports": true,
9
- "target": "ES2019",
9
+ "target": "ES2021",
10
10
  "sourceMap": true,
11
11
  "outDir": "./dist",
12
12
  "baseUrl": "./",
13
13
  "incremental": true,
14
- "skipLibCheck": true
14
+ "skipLibCheck": true,
15
+ "strictNullChecks": true,
16
+ "forceConsistentCasingInFileNames": true,
17
+ "noImplicitAny": false,
18
+ "strictBindCallApply": false,
19
+ "noFallthroughCasesInSwitch": false
15
20
  }
16
21
  }
@@ -97,7 +97,7 @@
97
97
  "ts-node": "^10.9.2",
98
98
  "typescript": "^5.6.2",
99
99
  "vite": "^5.4.8",
100
- "vite-plugin-blocklet": "^0.9.19",
100
+ "vite-plugin-blocklet": "^0.9.20",
101
101
  "vite-plugin-svgr": "^4.2.0",
102
102
  "zx": "^8.1.8"
103
103
  },
@@ -71,7 +71,7 @@
71
71
  "rimraf": "^5.0.10",
72
72
  "simple-git-hooks": "^2.11.1",
73
73
  "vite": "^5.4.8",
74
- "vite-plugin-blocklet": "^0.9.19",
74
+ "vite-plugin-blocklet": "^0.9.20",
75
75
  "vite-plugin-svgr": "^4.2.0",
76
76
  "zx": "^8.1.8"
77
77
  },
@@ -81,7 +81,7 @@
81
81
  "ts-node": "^10.9.2",
82
82
  "typescript": "^5.6.2",
83
83
  "vite": "^5.4.8",
84
- "vite-plugin-blocklet": "^0.9.19",
84
+ "vite-plugin-blocklet": "^0.9.20",
85
85
  "vite-plugin-svgr": "^4.2.0",
86
86
  "zx": "^8.1.8"
87
87
  },
@@ -71,7 +71,7 @@
71
71
  "rimraf": "^5.0.10",
72
72
  "simple-git-hooks": "^2.11.1",
73
73
  "vite": "^5.4.8",
74
- "vite-plugin-blocklet": "^0.9.19",
74
+ "vite-plugin-blocklet": "^0.9.20",
75
75
  "vite-plugin-svgr": "^4.2.0",
76
76
  "zx": "^8.1.8"
77
77
  },
@@ -52,7 +52,7 @@
52
52
  "rimraf": "^5.0.10",
53
53
  "simple-git-hooks": "^2.11.1",
54
54
  "vite": "^5.4.8",
55
- "vite-plugin-blocklet": "^0.9.19",
55
+ "vite-plugin-blocklet": "^0.9.20",
56
56
  "vite-plugin-svgr": "^4.2.0",
57
57
  "zx": "^8.1.8"
58
58
  },
@@ -36,7 +36,7 @@
36
36
  "rimraf": "^5.0.10",
37
37
  "simple-git-hooks": "^2.11.1",
38
38
  "vite": "^5.4.8",
39
- "vite-plugin-blocklet": "^0.9.19",
39
+ "vite-plugin-blocklet": "^0.9.20",
40
40
  "vite-plugin-solid": "^2.10.2",
41
41
  "zx": "^8.1.8"
42
42
  },
@@ -32,7 +32,7 @@
32
32
  "simple-git-hooks": "^2.11.1",
33
33
  "solid-js": "^1.9.1",
34
34
  "vite": "^5.4.8",
35
- "vite-plugin-blocklet": "^0.9.19",
35
+ "vite-plugin-blocklet": "^0.9.20",
36
36
  "vite-plugin-solid": "^2.10.2",
37
37
  "zx": "^8.1.8"
38
38
  },
@@ -44,7 +44,7 @@
44
44
  "simple-git-hooks": "^2.11.1",
45
45
  "svelte": "^4.2.19",
46
46
  "vite": "^5.4.8",
47
- "vite-plugin-blocklet": "^0.9.19",
47
+ "vite-plugin-blocklet": "^0.9.20",
48
48
  "zx": "^8.1.8"
49
49
  },
50
50
  "lint-staged": {
@@ -25,7 +25,7 @@
25
25
  "simple-git-hooks": "^2.11.1",
26
26
  "svelte": "^4.2.19",
27
27
  "vite": "^5.4.8",
28
- "vite-plugin-blocklet": "^0.9.19",
28
+ "vite-plugin-blocklet": "^0.9.20",
29
29
  "zx": "^8.1.8"
30
30
  },
31
31
  "lint-staged": {
@@ -96,7 +96,7 @@
96
96
  "ts-node": "^10.9.2",
97
97
  "typescript": "^5.6.2",
98
98
  "vite": "^5.4.8",
99
- "vite-plugin-blocklet": "^0.9.19",
99
+ "vite-plugin-blocklet": "^0.9.20",
100
100
  "vite-plugin-svgr": "^4.2.0",
101
101
  "zx": "^8.1.8"
102
102
  },
@@ -49,7 +49,7 @@
49
49
  "rimraf": "^5.0.10",
50
50
  "simple-git-hooks": "^2.11.1",
51
51
  "vite": "^5.4.8",
52
- "vite-plugin-blocklet": "^0.9.19",
52
+ "vite-plugin-blocklet": "^0.9.20",
53
53
  "vue": "^3.5.10",
54
54
  "zx": "^8.1.8"
55
55
  },
@@ -30,7 +30,7 @@
30
30
  "rimraf": "^5.0.10",
31
31
  "simple-git-hooks": "^2.11.1",
32
32
  "vite": "^5.4.8",
33
- "vite-plugin-blocklet": "^0.9.19",
33
+ "vite-plugin-blocklet": "^0.9.20",
34
34
  "vue": "^3.5.10",
35
35
  "zx": "^8.1.8"
36
36
  },
@@ -39,7 +39,7 @@
39
39
  "taze": "^0.16.9",
40
40
  "typescript": "^5.6.2",
41
41
  "vite": "^5.4.8",
42
- "vite-plugin-blocklet": "^0.9.19",
42
+ "vite-plugin-blocklet": "^0.9.20",
43
43
  "vue-tsc": "^2.1.6",
44
44
  "zx": "^8.1.8"
45
45
  },
@@ -48,7 +48,7 @@
48
48
  "rimraf": "^5.0.10",
49
49
  "simple-git-hooks": "^2.11.1",
50
50
  "vite": "^5.4.8",
51
- "vite-plugin-blocklet": "^0.9.19",
51
+ "vite-plugin-blocklet": "^0.9.20",
52
52
  "vue": "^2.7.16",
53
53
  "zx": "^8.1.8"
54
54
  },
@@ -30,7 +30,7 @@
30
30
  "rimraf": "^5.0.10",
31
31
  "simple-git-hooks": "^2.11.1",
32
32
  "vite": "^5.4.8",
33
- "vite-plugin-blocklet": "^0.9.19",
33
+ "vite-plugin-blocklet": "^0.9.20",
34
34
  "vue": "^2.7.16",
35
35
  "zx": "^8.1.8"
36
36
  },