@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/package.json CHANGED
@@ -1,12 +1,15 @@
1
1
  {
2
2
  "name": "@pipelab/plugin-electron",
3
- "version": "1.0.0-beta.1",
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.0",
23
- "@pipelab/plugin-core": "1.0.0-beta.1",
24
- "@pipelab/shared": "1.0.0-beta.0"
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.1",
31
- "@pipelab/tsconfig": "1.0.0-beta.0"
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
- });
@@ -1 +0,0 @@
1
- declare module "*.webp";
@@ -1,11 +0,0 @@
1
- <!doctype html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="UTF-8" />
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
- <title>Document</title>
7
- </head>
8
- <body>
9
- <p>Hello</p>
10
- </body>
11
- </html>