@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 +1 -0
- package/dist/app.js +1 -1
- package/dist/package.json +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
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:
|
|
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.
|
|
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
|
-
"
|
|
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.
|
|
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
|
-
"
|
|
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
|
},
|