@phreshos/cli 0.1.57 → 0.1.59

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.
@@ -29,7 +29,6 @@ export default class BackgroundSystemService {
29
29
  };
30
30
  }
31
31
  async register(definition) {
32
- await this.stop();
33
32
  await atomic(this.definition, JSON.stringify(definition), 0o600);
34
33
  }
35
34
  async unregister() {
@@ -39,7 +39,6 @@ export default class MacOSSystemService {
39
39
  }
40
40
  async register(definition) {
41
41
  await this.migrate();
42
- await this.stop();
43
42
  await mkdir(dirname(definition.output), { recursive: true });
44
43
  const content = plist(this.label, definition, this.environment);
45
44
  await atomic(this.definition, content);
@@ -28,7 +28,6 @@ export default class SystemdSystemService {
28
28
  };
29
29
  }
30
30
  async register(definition) {
31
- await this.stop();
32
31
  await mkdir(dirname(this.file), { recursive: true });
33
32
  await mkdir(dirname(definition.output), { recursive: true });
34
33
  const temporary = `${this.file}.${randomUUID()}.tmp`;
@@ -38,7 +38,6 @@ export default class WindowsSystemService {
38
38
  };
39
39
  }
40
40
  async register(definition) {
41
- await this.stop();
42
41
  await mkdir(dirname(definition.output), { recursive: true });
43
42
  await mkdir(dirname(this.state), { recursive: true });
44
43
  await rm(this.state, { force: true });
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "phresh",
3
3
  "private": true,
4
- "version": "0.1.35",
4
+ "version": "0.1.36",
5
5
  "description": "The official PhreshOS starter Program.",
6
6
  "type": "module",
7
7
  "scripts": {
@@ -14,15 +14,15 @@
14
14
  "starter"
15
15
  ],
16
16
  "dependencies": {
17
- "@phreshos/client": "^0.1.41",
18
- "@phreshos/core": "^0.1.47",
19
- "@phreshos/react": "^0.1.23",
20
- "@phreshos/server": "^0.1.45",
17
+ "@phreshos/client": "^0.1.42",
18
+ "@phreshos/core": "^0.1.48",
19
+ "@phreshos/react": "^0.1.24",
20
+ "@phreshos/server": "^0.1.46",
21
21
  "react": "^19.2.8",
22
22
  "react-dom": "^19.2.8"
23
23
  },
24
24
  "devDependencies": {
25
- "@phreshos/cli": "^0.1.57",
25
+ "@phreshos/cli": "^0.1.59",
26
26
  "@types/node": "^26.4.0",
27
27
  "@types/react": "^19.2.18",
28
28
  "@types/react-dom": "^19.2.5",
@@ -4,7 +4,7 @@ export default defineConfig({
4
4
  identity: "phresh",
5
5
  name: "Phresh Program",
6
6
  description: "A minimal counter with direct Client and Server endpoints.",
7
- version: "0.1.35",
7
+ version: "0.1.36",
8
8
  icon: "icon.png",
9
9
  categories: ["Development"],
10
10
  keywords: ["example", "counter", "client", "server"],
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "repository": "PhreshOS/phresh-program",
3
- "version": "0.1.35",
4
- "sha256": "8443820f5347137a6156de257b4971a7ee723827eceea664c6eeac5ee697bd6d",
3
+ "version": "0.1.36",
4
+ "sha256": "f22ae33155bc70b8533834835acdc8d8857a631caa57f135aa4ba5eeeb9fc4d0",
5
5
  "development": true
6
6
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@phreshos/cli",
3
3
  "type": "module",
4
- "version": "0.1.57",
4
+ "version": "0.1.59",
5
5
  "description": "The Phresh command-line interface for Program projects and system management.",
6
6
  "engines": {
7
7
  "node": ">=20.10"
@@ -47,8 +47,8 @@
47
47
  "packageManager": "bun@1.3.14",
48
48
  "dependencies": {
49
49
  "@clack/prompts": "^1.7.0",
50
- "@phreshos/core": "^0.1.47",
51
- "@phreshos/node": "^0.1.21",
50
+ "@phreshos/core": "^0.1.48",
51
+ "@phreshos/node": "^0.1.22",
52
52
  "adm-zip": "^0.6.0",
53
53
  "cli-table3": "^0.6.5",
54
54
  "commander": "^15.0.0",