@waftester/cli 2.8.7 → 2.8.9

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/bin/cli.js +4 -4
  2. package/package.json +9 -9
package/bin/cli.js CHANGED
@@ -94,8 +94,8 @@ function getBinaryPath() {
94
94
  console.error(
95
95
  `WAFtester: unsupported platform ${platformKey}\n` +
96
96
  `Supported: ${Object.keys(PLATFORMS).join(", ")}\n` +
97
- `Install from source: ` +
98
- `go install github.com/waftester/waftester/cmd/cli@latest`
97
+ `Download a binary from: ` +
98
+ `https://github.com/waftester/waftester/releases`
99
99
  );
100
100
  } else {
101
101
  console.error(
@@ -104,8 +104,8 @@ function getBinaryPath() {
104
104
  ` npm install @waftester/cli\n\n` +
105
105
  `If --no-optional was used:\n` +
106
106
  ` npm install @waftester/cli --include=optional\n\n` +
107
- `Or install from source:\n` +
108
- ` go install github.com/waftester/waftester/cmd/cli@latest`
107
+ `Or download a binary from:\n` +
108
+ ` https://github.com/waftester/waftester/releases`
109
109
  );
110
110
  }
111
111
  process.exit(1);
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@waftester/cli",
3
- "version": "2.8.7",
3
+ "version": "2.8.9",
4
4
  "description": "WAFtester — the most comprehensive WAF testing CLI & MCP server",
5
5
  "license": "BUSL-1.1",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "git+https://github.com/waftester/waftester.git"
9
9
  },
10
- "author": "WAFtester <hello@waftester.com> (https://github.com/waftester)",
11
- "homepage": "https://github.com/waftester/waftester",
10
+ "author": "WAFtester <hello@waftester.com> (https://waftester.com)",
11
+ "homepage": "https://waftester.com",
12
12
  "bugs": "https://github.com/waftester/waftester/issues",
13
13
  "publishConfig": {
14
14
  "access": "public",
@@ -43,11 +43,11 @@
43
43
  "node": ">=16"
44
44
  },
45
45
  "optionalDependencies": {
46
- "@waftester/darwin-x64": "2.8.7",
47
- "@waftester/darwin-arm64": "2.8.7",
48
- "@waftester/linux-x64": "2.8.7",
49
- "@waftester/linux-arm64": "2.8.7",
50
- "@waftester/win32-x64": "2.8.7",
51
- "@waftester/win32-arm64": "2.8.7"
46
+ "@waftester/darwin-x64": "2.8.9",
47
+ "@waftester/darwin-arm64": "2.8.9",
48
+ "@waftester/linux-x64": "2.8.9",
49
+ "@waftester/linux-arm64": "2.8.9",
50
+ "@waftester/win32-x64": "2.8.9",
51
+ "@waftester/win32-arm64": "2.8.9"
52
52
  }
53
53
  }