@stacks/rendezvous 0.1.2 → 0.1.3

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/README.md CHANGED
@@ -34,6 +34,7 @@ root
34
34
 
35
35
  ```
36
36
  npm install "https://github.com/stacks-network/rendezvous.git"
37
+ npm run build
37
38
  ```
38
39
 
39
40
  Run the fuzzer locally:
package/dist/app.js CHANGED
@@ -25,7 +25,7 @@ const logger = (log, logLevel = "log") => {
25
25
  const helpMessage = `
26
26
  rv v${package_json_1.version}
27
27
 
28
- Usage: ./rv <path-to-clarinet-project> <contract-name> <type> [--seed=<seed>] [--path=<path>] [--runs=<runs>]
28
+ Usage: rv <path-to-clarinet-project> <contract-name> <type> [--seed=<seed>] [--path=<path>] [--runs=<runs>]
29
29
 
30
30
  Positional arguments:
31
31
  path-to-clarinet-project - The path to the Clarinet project.
package/dist/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@stacks/rendezvous",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Meet your contract's vulnerabilities head-on.",
5
5
  "main": "app.js",
6
6
  "bin": {
7
7
  "rv": "./dist/app.js"
8
8
  },
9
9
  "scripts": {
10
- "postinstall": "npx -p typescript tsc --project tsconfig.json && node -e \"if (process.platform !== 'win32') require('fs').chmodSync('./dist/app.js', 0o755);\"",
10
+ "build": "npx -p typescript tsc --project tsconfig.json && node -e \"if (process.platform !== 'win32') require('fs').chmodSync('./dist/app.js', 0o755);\"",
11
11
  "test": "npx tsc --project tsconfig.json && npx jest",
12
12
  "test:coverage": "npx tsc --project tsconfig.json && npx jest --coverage"
13
13
  },
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@stacks/rendezvous",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Meet your contract's vulnerabilities head-on.",
5
5
  "main": "app.js",
6
6
  "bin": {
7
7
  "rv": "./dist/app.js"
8
8
  },
9
9
  "scripts": {
10
- "postinstall": "npx -p typescript tsc --project tsconfig.json && node -e \"if (process.platform !== 'win32') require('fs').chmodSync('./dist/app.js', 0o755);\"",
10
+ "build": "npx -p typescript tsc --project tsconfig.json && node -e \"if (process.platform !== 'win32') require('fs').chmodSync('./dist/app.js', 0o755);\"",
11
11
  "test": "npx tsc --project tsconfig.json && npx jest",
12
12
  "test:coverage": "npx tsc --project tsconfig.json && npx jest --coverage"
13
13
  },