@deploid/studio 2.0.7 → 2.0.8

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.
Files changed (2) hide show
  1. package/README.md +2 -1
  2. package/package.json +8 -9
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Deploid Studio
2
2
 
3
- Desktop app for running Deploid workflows in a project folder with a state-driven release dashboard.
3
+ Experimental desktop client for Deploid workflows in a project folder.
4
4
 
5
5
  ## Install
6
6
 
@@ -25,4 +25,5 @@ deploid-studio
25
25
 
26
26
  ## Notes
27
27
  - Deploid Studio executes `@deploid/cli` commands from the selected working directory.
28
+ - The primary product direction is CLI + reusable core APIs; Studio is an optional client on top of that stack.
28
29
  - Packaging in Deploid 2.0 is `capacitor` only.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deploid/studio",
3
- "version": "2.0.7",
3
+ "version": "2.0.8",
4
4
  "description": "Desktop GUI for running Deploid workflows in a project folder",
5
5
  "private": false,
6
6
  "publishConfig": {
@@ -17,16 +17,15 @@
17
17
  "renderer/",
18
18
  "README.md"
19
19
  ],
20
- "scripts": {
21
- "build": "tsc -b && node ./scripts/copy-renderer.mjs",
22
- "dev": "pnpm build && node ./bin/deploid-studio.cjs",
23
- "prepublishOnly": "pnpm build"
24
- },
25
20
  "dependencies": {
26
- "@deploid/cli": "^2.0.0",
27
- "electron": "^31.7.7"
21
+ "electron": "^31.7.7",
22
+ "@deploid/cli": "2.0.17"
28
23
  },
29
24
  "devDependencies": {
30
25
  "@types/node": "^24.9.1"
26
+ },
27
+ "scripts": {
28
+ "build": "tsc -b && node ./scripts/copy-renderer.mjs",
29
+ "dev": "pnpm build && node ./bin/deploid-studio.cjs"
31
30
  }
32
- }
31
+ }