create-packer 1.35.17 → 1.35.19

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-packer",
3
- "version": "1.35.17",
3
+ "version": "1.35.19",
4
4
  "main": "index.js",
5
5
  "repository": "https://github.com/kevily/create-packer",
6
6
  "author": "1k <bug_zero@163.com>",
@@ -15,12 +15,7 @@
15
15
  "commit": "git add . && cz",
16
16
  "push": "pnpm run commit && git push"
17
17
  },
18
- "files": [
19
- "bin",
20
- "template",
21
- "template/**/.gitignore",
22
- ".gitignore"
23
- ],
18
+ "files": ["bin", "template", "template/**/.gitignore", ".gitignore"],
24
19
  "dependencies": {
25
20
  "chalk": "4.1.2",
26
21
  "commander": "8.1.0",
@@ -30,7 +25,7 @@
30
25
  "ora": "5.4.1"
31
26
  },
32
27
  "devDependencies": {
33
- "@biomejs/biome": "1.9.2",
28
+ "@biomejs/biome": "1.9.3",
34
29
  "@commitlint/config-conventional": "^17.6.3",
35
30
  "@commitlint/cz-commitlint": "17.4.2",
36
31
  "@types/fs-extra": "9.0.12",
@@ -33,7 +33,7 @@
33
33
  "rimraf": "5.0.1"
34
34
  },
35
35
  "devDependencies": {
36
- "@biomejs/biome": "1.9.2",
36
+ "@biomejs/biome": "1.9.3",
37
37
  "@changesets/cli": "2.26.2",
38
38
  "@storybook/addon-essentials": "8.2.7",
39
39
  "@storybook/addon-interactions": "8.2.7",
@@ -35,7 +35,7 @@
35
35
  "zustand": "4.4.1"
36
36
  },
37
37
  "devDependencies": {
38
- "@biomejs/biome": "1.9.2",
38
+ "@biomejs/biome": "1.9.3",
39
39
  "@commitlint/cli": "17.6.1",
40
40
  "@commitlint/config-conventional": "17.6.1",
41
41
  "@commitlint/cz-commitlint": "17.5.0",
@@ -33,7 +33,7 @@
33
33
  "zustand": "4.4.1"
34
34
  },
35
35
  "devDependencies": {
36
- "@biomejs/biome": "1.9.2",
36
+ "@biomejs/biome": "1.9.3",
37
37
  "@commitlint/cli": "17.6.1",
38
38
  "@commitlint/config-conventional": "17.6.1",
39
39
  "@commitlint/cz-commitlint": "17.5.0",
@@ -3,14 +3,16 @@
3
3
  import 'styled-components'
4
4
  import { themeType } from './shared/theme'
5
5
 
6
- interface ImportMetaEnv {
7
- readonly VITE_BASE_URL: string
8
- readonly VITE_API_HOST: string
9
- // 更多环境变量...
10
- }
6
+ declare global {
7
+ interface ImportMetaEnv {
8
+ readonly VITE_BASE_URL: string
9
+ readonly VITE_API_HOST: string
10
+ // 更多环境变量...
11
+ }
11
12
 
12
- interface ImportMeta {
13
- readonly env: ImportMetaEnv
13
+ interface ImportMeta {
14
+ readonly env: ImportMetaEnv
15
+ }
14
16
  }
15
17
 
16
18
  declare module 'styled-components' {
@@ -34,7 +34,7 @@
34
34
  "zustand": "4.4.1"
35
35
  },
36
36
  "devDependencies": {
37
- "@biomejs/biome": "1.9.2",
37
+ "@biomejs/biome": "1.9.3",
38
38
  "@commitlint/cli": "18.6.1",
39
39
  "@commitlint/config-conventional": "18.6.2",
40
40
  "@commitlint/cz-commitlint": "18.6.1",
@@ -27,7 +27,7 @@
27
27
  "vue-router": "4.3.0"
28
28
  },
29
29
  "devDependencies": {
30
- "@biomejs/biome": "1.9.2",
30
+ "@biomejs/biome": "1.9.3",
31
31
  "@commitlint/cli": "17.6.1",
32
32
  "@commitlint/config-conventional": "17.6.1",
33
33
  "@commitlint/cz-commitlint": "17.5.0",
@@ -30,7 +30,7 @@
30
30
  },
31
31
  "devDependencies": {
32
32
  "1k-types": "1.2.0",
33
- "@biomejs/biome": "1.9.2",
33
+ "@biomejs/biome": "1.9.3",
34
34
  "@commitlint/cli": "17.6.1",
35
35
  "@commitlint/config-conventional": "17.6.1",
36
36
  "@commitlint/cz-commitlint": "17.5.0",
@@ -2,14 +2,16 @@
2
2
  import 'styled-components'
3
3
  import { themeType } from './shared/styles'
4
4
 
5
- interface ImportMetaEnv {
6
- readonly VITE_API_HOST: string
7
- readonly VITE_APP_ID: string
8
- // 更多环境变量...
9
- }
5
+ declare global {
6
+ interface ImportMetaEnv {
7
+ readonly VITE_API_HOST: string
8
+ readonly VITE_APP_ID: string
9
+ // 更多环境变量...
10
+ }
10
11
 
11
- interface ImportMeta {
12
- readonly env: ImportMetaEnv
12
+ interface ImportMeta {
13
+ readonly env: ImportMetaEnv
14
+ }
13
15
  }
14
16
 
15
17
  declare module 'styled-components' {