@pipelab/plugin-electron 1.0.0-beta.0 → 1.0.0-beta.2

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.0",
3
+ "version": "1.0.0-beta.2",
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.0",
24
- "@pipelab/shared": "1.0.0-beta.0"
24
+ "@pipelab/constants": "1.0.0-beta.1",
25
+ "@pipelab/plugin-core": "1.0.0-beta.2",
26
+ "@pipelab/shared": "1.0.0-beta.1"
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.0",
31
- "@pipelab/tsconfig": "1.0.0-beta.0"
32
+ "@pipelab/test-utils": "1.0.0-beta.2",
33
+ "@pipelab/tsconfig": "1.0.0-beta.1"
32
34
  },
33
35
  "test": {
34
36
  "env": {
package/CHANGELOG.md DELETED
@@ -1,14 +0,0 @@
1
- # @pipelab/plugin-electron
2
-
3
- ## 1.0.0-beta.0
4
-
5
- ### Major Changes
6
-
7
- - e1befbf: initial release
8
-
9
- ### Patch Changes
10
-
11
- - Updated dependencies [e1befbf]
12
- - @pipelab/plugin-core@1.0.0-beta.0
13
- - @pipelab/constants@1.0.0-beta.0
14
- - @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>