@vibelet/cli 1.0.26 → 1.1.0
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/index.cjs +53 -53
- package/dist/runtime-version.cjs +1 -1
- package/package.json +1 -24
package/dist/runtime-version.cjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
var s=require("node:fs"),n=require("node:path"),c="@vibelet/cli";function a(e){try{let r=JSON.parse((0,s.readFileSync)(e,"utf8"));if(r.name===c&&typeof r.version=="string"&&r.version.length>0)return r.version}catch{}return null}function p(){return"1.0
|
|
1
|
+
var s=require("node:fs"),n=require("node:path"),c="@vibelet/cli";function a(e){try{let r=JSON.parse((0,s.readFileSync)(e,"utf8"));if(r.name===c&&typeof r.version=="string"&&r.version.length>0)return r.version}catch{}return null}function p(){return"1.1.0"}var i=p();process.stdout.write(`${i}
|
|
2
2
|
`);
|
package/package.json
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vibelet/cli",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Cross-platform CLI for installing and running the Vibelet daemon",
|
|
5
5
|
"homepage": "https://vibelet.icu",
|
|
6
|
-
"private": false,
|
|
7
6
|
"files": [
|
|
8
7
|
"dist/vibelet.mjs",
|
|
9
8
|
"dist/index.cjs",
|
|
@@ -24,27 +23,5 @@
|
|
|
24
23
|
},
|
|
25
24
|
"publishConfig": {
|
|
26
25
|
"access": "public"
|
|
27
|
-
},
|
|
28
|
-
"scripts": {
|
|
29
|
-
"build": "NX_TUI=false nx run-many -t build",
|
|
30
|
-
"build:release": "pnpm build:release:daemon && pnpm build:release:cli",
|
|
31
|
-
"build:release:daemon": "pnpm -C apps/daemon build:release",
|
|
32
|
-
"build:release:cli": "node ./scripts/build-cli-release.mjs",
|
|
33
|
-
"build:publish": "pnpm build:release",
|
|
34
|
-
"dev": "nx run-many -t dev --parallel=10 --verbose",
|
|
35
|
-
"dev:app": "pnpm -C apps/app dev",
|
|
36
|
-
"dev:daemon": "pnpm -C apps/daemon dev",
|
|
37
|
-
"dev:site": "pnpm -C apps/site dev",
|
|
38
|
-
"build:site": "nx run site:build",
|
|
39
|
-
"test": "pnpm -C apps/app test && pnpm -C apps/daemon test && pnpm -C apps/site test && node --test bin/vibelet-cli.test.mjs scripts/publish-dual-npm.test.mjs scripts/ship-release.test.mjs",
|
|
40
|
-
"prepack": "pnpm build:publish",
|
|
41
|
-
"publish:dual": "node ./scripts/publish-dual-npm.mjs",
|
|
42
|
-
"publish:dual:dry-run": "node ./scripts/publish-dual-npm.mjs --dry-run"
|
|
43
|
-
},
|
|
44
|
-
"devDependencies": {
|
|
45
|
-
"@vercel/ncc": "^0.38.4",
|
|
46
|
-
"cloudflared": "0.7.1",
|
|
47
|
-
"nx": "^22.1.3",
|
|
48
|
-
"qrcode": "^1.5.4"
|
|
49
26
|
}
|
|
50
27
|
}
|