@phreshos/cli 0.1.10 → 0.1.11
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/build-template.js
CHANGED
|
@@ -6,8 +6,8 @@ import AdmZip from "adm-zip";
|
|
|
6
6
|
import { readConfig } from "./project.js";
|
|
7
7
|
const repository = "PhreshOS/phresh-program";
|
|
8
8
|
const release = {
|
|
9
|
-
version: "0.1.
|
|
10
|
-
sha256: "
|
|
9
|
+
version: "0.1.2",
|
|
10
|
+
sha256: "dba5f1fd868c46501d5bd3463f4f8f0e098c7a231cb75794c01118689dc69339"
|
|
11
11
|
};
|
|
12
12
|
const archiveUrl = `https://github.com/${repository}/archive/refs/tags/v${release.version}.zip`;
|
|
13
13
|
const output = resolve(import.meta.dirname, "template");
|
package/dist/program-release.js
CHANGED
|
@@ -5,6 +5,10 @@ import { tmpdir } from "node:os";
|
|
|
5
5
|
import { dirname, isAbsolute, join, relative, resolve } from "node:path";
|
|
6
6
|
import AdmZip from "adm-zip";
|
|
7
7
|
const officialPrograms = {
|
|
8
|
+
phresh: {
|
|
9
|
+
identity: "phresh-program",
|
|
10
|
+
repository: "PhreshOS/phresh-program"
|
|
11
|
+
},
|
|
8
12
|
setup: {
|
|
9
13
|
identity: "setup",
|
|
10
14
|
repository: "PhreshOS/setup-program"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "phresh-program",
|
|
3
3
|
"private": true,
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.2",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"dev": "phresh dev",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"react-dom": "^19.2.8"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@phreshos/cli": "^0.1.
|
|
19
|
+
"@phreshos/cli": "^0.1.11",
|
|
20
20
|
"@types/node": "^26.2.0",
|
|
21
21
|
"@types/react": "^19.2.18",
|
|
22
22
|
"@types/react-dom": "^19.2.4",
|
|
@@ -22,7 +22,7 @@ export default defineConfig({
|
|
|
22
22
|
// these values determines the Program's identity.
|
|
23
23
|
name: "Phresh Program",
|
|
24
24
|
description: "A simple counter whose state lives on the Server.",
|
|
25
|
-
version: "0.1.
|
|
25
|
+
version: "0.1.2",
|
|
26
26
|
|
|
27
27
|
// Markdown entry point for the API owned by this Program. It documents the
|
|
28
28
|
// counter service contract; PhreshOS endpoint mechanics belong in PhreshOS
|
package/dist/template.json
CHANGED