@kelceyp/caw 1.0.1 → 1.0.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/dist/caw.js +2 -2
- package/package.json +2 -2
package/dist/caw.js
CHANGED
|
@@ -9378,6 +9378,6 @@ if (!globalCheck.ok) {
|
|
|
9378
9378
|
console.error(globalCheck.message);
|
|
9379
9379
|
process.exit(1);
|
|
9380
9380
|
}
|
|
9381
|
-
var LAUNCHER_VERSION = "1.0.
|
|
9382
|
-
var app = create().name("caw").version(LAUNCHER_VERSION).command(start_default.create()).command(stop_default.create()).command(status_default.create()).command(logs_default.create())
|
|
9381
|
+
var LAUNCHER_VERSION = "1.0.2";
|
|
9382
|
+
var app = create().name("caw").version(LAUNCHER_VERSION).command(start_default.create()).command(stop_default.create()).command(status_default.create()).command(logs_default.create());
|
|
9383
9383
|
await app.run(process.argv.slice(2));
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kelceyp/caw",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "CAW launcher — server lifecycle management CLI",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"caw": "dist/caw.js"
|
|
8
8
|
},
|
|
9
9
|
"scripts": {
|
|
10
|
-
"build": "bun build src/main.js --outfile dist/caw.js --target node --format esm",
|
|
10
|
+
"build": "CAWBUILD_VERSION=$(node -p \"require('./package.json').version\") bun build src/main.js --outfile dist/caw.js --target node --format esm --env='CAWBUILD_*'",
|
|
11
11
|
"test": "bun test",
|
|
12
12
|
"postinstall": "node scripts/postinstall.js"
|
|
13
13
|
},
|