@rulebricks/cli 2.0.3 → 2.0.5

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.
Files changed (2) hide show
  1. package/README.md +0 -8
  2. package/package.json +1 -17
package/README.md CHANGED
@@ -10,14 +10,6 @@ You can choose how much you would like the CLI to automate for you– use it to
10
10
  npm install -g @rulebricks/cli
11
11
  ```
12
12
 
13
- Alternatively, try the quick install script (macOS/Linux):
14
-
15
- ```bash
16
- curl -fsSL https://raw.githubusercontent.com/rulebricks/cli/main/install.sh | bash
17
- ```
18
-
19
- Standalone binaries are also available on the [Releases page](https://github.com/rulebricks/cli/releases).
20
-
21
13
  ## Prerequisites
22
14
 
23
15
  You must have a valid **Rulebricks license key**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rulebricks/cli",
3
- "version": "2.0.3",
3
+ "version": "2.0.5",
4
4
  "description": "CLI for deploying and managing private Rulebricks instances",
5
5
  "type": "module",
6
6
  "bin": {
@@ -8,7 +8,6 @@
8
8
  },
9
9
  "scripts": {
10
10
  "build": "tsc",
11
- "bundle": "esbuild dist/index.js --bundle --platform=node --target=node20 --format=cjs --outfile=bundle/cli.cjs",
12
11
  "dev": "tsc --watch",
13
12
  "start": "node dist/index.js",
14
13
  "lint": "eslint src --ext .ts,.tsx",
@@ -52,26 +51,11 @@
52
51
  "devDependencies": {
53
52
  "@types/node": "^20.14.10",
54
53
  "@types/react": "^19.2.4",
55
- "esbuild": "^0.20.0",
56
54
  "typescript": "^5.5.3"
57
55
  },
58
56
  "engines": {
59
57
  "node": ">=18"
60
58
  },
61
- "pkg": {
62
- "assets": [
63
- "terraform/**/*",
64
- "benchmarks/**/*"
65
- ],
66
- "targets": [
67
- "node20-linux-x64",
68
- "node20-linux-arm64",
69
- "node20-macos-x64",
70
- "node20-macos-arm64",
71
- "node20-win-x64"
72
- ],
73
- "outputPath": "release"
74
- },
75
59
  "files": [
76
60
  "dist",
77
61
  "terraform",