@kelceyp/caw 1.0.5 → 1.0.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kelceyp/caw",
3
- "version": "1.0.5",
3
+ "version": "1.0.7",
4
4
  "description": "CAW launcher — server lifecycle management CLI",
5
5
  "type": "module",
6
6
  "bin": {
@@ -8,7 +8,7 @@
8
8
  },
9
9
  "scripts": {
10
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
- "test": "bun test",
11
+ "test": "bun test --isolate",
12
12
  "postinstall": "node scripts/postinstall.js"
13
13
  },
14
14
  "files": [
@@ -17,5 +17,8 @@
17
17
  ],
18
18
  "dependencies": {
19
19
  "@kelceyp/clibuilder": "^0.2.1"
20
+ },
21
+ "devDependencies": {
22
+ "semver": "^7"
20
23
  }
21
24
  }
@@ -1,7 +1,7 @@
1
1
  import { execSync } from 'node:child_process';
2
2
 
3
3
  try {
4
- execSync('npm install -g @kelceyp/caw-server@^1', { stdio: 'inherit' });
4
+ execSync('npm install -g @kelceyp/caw-server@^1 --loglevel=error', { stdio: 'inherit' });
5
5
  } catch {
6
6
  console.warn('Could not install @kelceyp/caw-server automatically.');
7
7
  console.warn('Run "caw start" to retry installation.');