@pipelab/plugin-electron 1.0.0-beta.1 → 1.0.0-beta.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.
- package/dist/index.cjs +14 -2
- package/dist/index.mjs +14 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +9 -7
- package/CHANGELOG.md +0 -20
- package/src/configure.ts +0 -23
- package/src/declarations.d.ts +0 -1
- package/src/fixtures/build/index.html +0 -11
- package/src/forge.ts +0 -851
- package/src/index.ts +0 -94
- package/src/make.spec.ts +0 -57
- package/src/make.ts +0 -22
- package/src/package-v2.ts +0 -52
- package/src/package.ts +0 -22
- package/src/preview.ts +0 -35
- package/src/public/electron.webp +0 -0
- package/src/utils.ts +0 -35
- package/tests/e2e/electron.spec.ts +0 -64
- package/tests/e2e/fixtures/folder-to-electron.json +0 -171
- package/tests/e2e/fixtures/folder-to-tauri.json +0 -58
- package/tests/e2e/vitest.config.mts +0 -20
- package/tsconfig.json +0 -10
- package/tsdown.config.ts +0 -15
package/package.json
CHANGED
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pipelab/plugin-electron",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.4",
|
|
4
4
|
"license": "FSL-1.1-MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/CynToolkit/pipelab.git",
|
|
8
8
|
"directory": "plugins/plugin-electron"
|
|
9
9
|
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist"
|
|
12
|
+
],
|
|
10
13
|
"type": "module",
|
|
11
14
|
"main": "./dist/index.cjs",
|
|
12
15
|
"module": "./dist/index.mjs",
|
|
@@ -17,18 +20,17 @@
|
|
|
17
20
|
"dependencies": {
|
|
18
21
|
"@types/node": "^24.12.2",
|
|
19
22
|
"electron": "32.1.2",
|
|
20
|
-
"esbuild": "0.24.0",
|
|
21
23
|
"ts-deepmerge": "7.0.1",
|
|
22
|
-
"@pipelab/constants": "1.0.0-beta.
|
|
23
|
-
"@pipelab/plugin-core": "1.0.0-beta.
|
|
24
|
-
"@pipelab/shared": "1.0.0-beta.
|
|
24
|
+
"@pipelab/constants": "1.0.0-beta.3",
|
|
25
|
+
"@pipelab/plugin-core": "1.0.0-beta.4",
|
|
26
|
+
"@pipelab/shared": "1.0.0-beta.2"
|
|
25
27
|
},
|
|
26
28
|
"devDependencies": {
|
|
27
29
|
"tsdown": "0.21.2",
|
|
28
30
|
"typescript": "5.9.3",
|
|
29
31
|
"vitest": "3.1.4",
|
|
30
|
-
"@pipelab/test-utils": "1.0.0-beta.
|
|
31
|
-
"@pipelab/tsconfig": "1.0.0-beta.
|
|
32
|
+
"@pipelab/test-utils": "1.0.0-beta.4",
|
|
33
|
+
"@pipelab/tsconfig": "1.0.0-beta.2"
|
|
32
34
|
},
|
|
33
35
|
"test": {
|
|
34
36
|
"env": {
|
package/CHANGELOG.md
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
# @pipelab/plugin-electron
|
|
2
|
-
|
|
3
|
-
## 1.0.0-beta.1
|
|
4
|
-
|
|
5
|
-
### Patch Changes
|
|
6
|
-
|
|
7
|
-
- @pipelab/plugin-core@1.0.0-beta.1
|
|
8
|
-
|
|
9
|
-
## 1.0.0-beta.0
|
|
10
|
-
|
|
11
|
-
### Major Changes
|
|
12
|
-
|
|
13
|
-
- e1befbf: initial release
|
|
14
|
-
|
|
15
|
-
### Patch Changes
|
|
16
|
-
|
|
17
|
-
- Updated dependencies [e1befbf]
|
|
18
|
-
- @pipelab/plugin-core@1.0.0-beta.0
|
|
19
|
-
- @pipelab/constants@1.0.0-beta.0
|
|
20
|
-
- @pipelab/shared@1.0.0-beta.0
|
package/src/configure.ts
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { createAction, createActionRunner } from "@pipelab/plugin-core";
|
|
2
|
-
import { configureParams } from "./forge";
|
|
3
|
-
|
|
4
|
-
export const props = createAction({
|
|
5
|
-
id: "electron:configure",
|
|
6
|
-
description: "Configure electron",
|
|
7
|
-
displayString: "'Configure Electron'",
|
|
8
|
-
icon: "",
|
|
9
|
-
meta: {},
|
|
10
|
-
name: "Configure Electron",
|
|
11
|
-
advanced: true,
|
|
12
|
-
outputs: {
|
|
13
|
-
configuration: {
|
|
14
|
-
label: "Configuration",
|
|
15
|
-
value: {} as Partial<DesktopApp.Electron>,
|
|
16
|
-
},
|
|
17
|
-
},
|
|
18
|
-
params: configureParams,
|
|
19
|
-
});
|
|
20
|
-
|
|
21
|
-
export const configureRunner = createActionRunner<typeof props>(async ({ setOutput, inputs }) => {
|
|
22
|
-
setOutput("configuration", inputs);
|
|
23
|
-
});
|
package/src/declarations.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
declare module "*.webp";
|