@rockcarver/frodo-cli 2.0.0-60 → 2.0.0-61
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/CHANGELOG.md +9 -1
- package/dist/app.cjs +6 -7
- package/dist/app.cjs.map +1 -1
- package/package.json +6 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rockcarver/frodo-cli",
|
|
3
|
-
"version": "2.0.0-
|
|
3
|
+
"version": "2.0.0-61",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A command line interface to manage ForgeRock Identity Cloud tenants, ForgeOps deployments, and classic deployments.",
|
|
6
6
|
"keywords": [
|
|
@@ -30,14 +30,13 @@
|
|
|
30
30
|
"main": "dist/launch.cjs",
|
|
31
31
|
"scripts": {
|
|
32
32
|
"test": "npm run test:only",
|
|
33
|
-
"test:only": "NODE_OPTIONS
|
|
34
|
-
"test:debug": "NODE_OPTIONS
|
|
35
|
-
"test2": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
|
|
36
|
-
"test:local": "npm run build && node --experimental-vm-modules node_modules/jest/bin/jest.js",
|
|
37
|
-
"test:debug2": "node --no-warnings --experimental-vm-modules --experimental-specifier-resolution=node node_modules/jest/bin/jest.js --verbose=true --silent=false",
|
|
33
|
+
"test:only": "NODE_OPTIONS='--no-warnings --experimental-vm-modules' npx jest --silent",
|
|
34
|
+
"test:debug": "NODE_OPTIONS='--no-warnings --experimental-vm-modules' npx jest --verbose=true --silent=false",
|
|
38
35
|
"lint": "eslint --ext .ts --ignore-path .gitignore .",
|
|
39
36
|
"lint:fix": "eslint --fix --ext .ts --ignore-path .gitignore .",
|
|
40
|
-
"build": "
|
|
37
|
+
"build": "npm run build:binary",
|
|
38
|
+
"build:only": "npx tsup",
|
|
39
|
+
"build:binary": "npm run build:only && npm run dist-pkg",
|
|
41
40
|
"dist-pkg": "pkg -C Gzip -t node18 --config package.json -o frodo dist/app.cjs",
|
|
42
41
|
"link": "npm link ../frodo-lib",
|
|
43
42
|
"dev": "npx tsup --watch src"
|