electronup 0.1.0 → 0.1.1
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/README.md +1 -1
- package/dist/bin/electronup.js +1 -1
- package/dist/client/index.d.mts +1 -1
- package/dist/client/index.d.ts +1 -1
- package/package.json +5 -6
package/README.md
CHANGED
package/dist/bin/electronup.js
CHANGED
package/dist/client/index.d.mts
CHANGED
|
@@ -75,4 +75,4 @@ declare function defineConfig(config: Promise<ElectronupConfig>): Promise<Electr
|
|
|
75
75
|
declare function defineConfig(config: ElectronupConfigFnObject): ElectronupConfigFnObject;
|
|
76
76
|
declare function defineConfig(config: ElectronupConfigExport): ElectronupConfigExport;
|
|
77
77
|
|
|
78
|
-
export { BuilderConfig, ConfigEnv, ElectronupConfig, TsupConfig, ViteConfig, defineConfig };
|
|
78
|
+
export { type BuilderConfig, type ConfigEnv, type ElectronupConfig, type TsupConfig, type ViteConfig, defineConfig };
|
package/dist/client/index.d.ts
CHANGED
|
@@ -75,4 +75,4 @@ declare function defineConfig(config: Promise<ElectronupConfig>): Promise<Electr
|
|
|
75
75
|
declare function defineConfig(config: ElectronupConfigFnObject): ElectronupConfigFnObject;
|
|
76
76
|
declare function defineConfig(config: ElectronupConfigExport): ElectronupConfigExport;
|
|
77
77
|
|
|
78
|
-
export { BuilderConfig, ConfigEnv, ElectronupConfig, TsupConfig, ViteConfig, defineConfig };
|
|
78
|
+
export { type BuilderConfig, type ConfigEnv, type ElectronupConfig, type TsupConfig, type ViteConfig, defineConfig };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "electronup",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "融合构建 electron 应用需要的构建工具,保留原有配置习惯的命令行工具 ",
|
|
5
5
|
"author": "quiteer",
|
|
6
6
|
"license": "MIT",
|
|
@@ -37,8 +37,8 @@
|
|
|
37
37
|
"update-version": "bumpp package.json"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
|
-
"@types/node": ">=
|
|
41
|
-
"node": ">=
|
|
40
|
+
"@types/node": ">= 18",
|
|
41
|
+
"node": ">= 18",
|
|
42
42
|
"vue": ">= 3"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
@@ -52,9 +52,8 @@
|
|
|
52
52
|
"kolorist": "^1.8.0",
|
|
53
53
|
"portfinder": "^1.0.32",
|
|
54
54
|
"prompts": "^2.4.2",
|
|
55
|
-
"tsup": "^7.
|
|
55
|
+
"tsup": "^7.3.0",
|
|
56
56
|
"vite": "^4.5.1",
|
|
57
57
|
"yaml": "^2.3.4"
|
|
58
|
-
}
|
|
59
|
-
"devDependencies": { }
|
|
58
|
+
}
|
|
60
59
|
}
|