@rockcarver/frodo-cli 4.0.0-3 → 4.0.0-4
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 +23 -1
- package/dist/app.cjs +665 -583
- package/dist/app.cjs.map +1 -1
- package/dist/{chunk-HEKQUNOB.cjs → chunk-I43EENNM.cjs} +2 -2
- package/dist/{chunk-HEKQUNOB.cjs.map → chunk-I43EENNM.cjs.map} +1 -1
- package/dist/launch.cjs +4 -4
- package/dist/loader.cjs +41 -36
- package/dist/loader.cjs.map +1 -1
- package/package.json +8 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rockcarver/frodo-cli",
|
|
3
|
-
"version": "4.0.0-
|
|
3
|
+
"version": "4.0.0-4",
|
|
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": [
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"build": "npm run build:binary",
|
|
43
43
|
"build:only": "npx tsup && npx tsc",
|
|
44
44
|
"build:binary": "npm run build:only && npm run dist-pkg",
|
|
45
|
-
"dist-pkg": "pkg -C Gzip -t
|
|
45
|
+
"dist-pkg": "pkg -C Gzip -t node24 --config package.json -o frodo dist/app.cjs",
|
|
46
46
|
"link": "npm link ../frodo-lib",
|
|
47
47
|
"dev": "npx tsup --watch src"
|
|
48
48
|
},
|
|
@@ -95,14 +95,14 @@
|
|
|
95
95
|
]
|
|
96
96
|
},
|
|
97
97
|
"devDependencies": {
|
|
98
|
-
"@rockcarver/frodo-lib": "4.0.0-
|
|
98
|
+
"@rockcarver/frodo-lib": "4.0.0-5",
|
|
99
99
|
"@types/colors": "^1.2.1",
|
|
100
100
|
"@types/fs-extra": "^11.0.1",
|
|
101
101
|
"@types/jest": "^29.2.3",
|
|
102
102
|
"@types/node": "^22.13.10",
|
|
103
103
|
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
|
104
104
|
"@typescript-eslint/parser": "^7.18.0",
|
|
105
|
-
"@yao-pkg/pkg": "^
|
|
105
|
+
"@yao-pkg/pkg": "^6.12.0",
|
|
106
106
|
"chokidar": "^4.0.3",
|
|
107
107
|
"cli-progress": "^3.11.2",
|
|
108
108
|
"cli-table3": "^0.6.3",
|
|
@@ -110,6 +110,7 @@
|
|
|
110
110
|
"commander": "^11.0.0",
|
|
111
111
|
"compare-versions": "^6.1.0",
|
|
112
112
|
"copyfiles": "^2.4.1",
|
|
113
|
+
"deep-diff": "^1.0.2",
|
|
113
114
|
"del": "^8.0.0",
|
|
114
115
|
"eslint": "^8.28.0",
|
|
115
116
|
"eslint-config-prettier": "^10.1.1",
|
|
@@ -132,13 +133,11 @@
|
|
|
132
133
|
"rimraf": "^6.0.1",
|
|
133
134
|
"sanitize-filename": "^1.6.3",
|
|
134
135
|
"slugify": "^1.6.5",
|
|
136
|
+
"tmp": "^0.2.3",
|
|
135
137
|
"ts-jest": "^29.1.4",
|
|
136
138
|
"tsup": "^8.1.0",
|
|
137
139
|
"typescript": "^5.2.2",
|
|
138
140
|
"uuid": "^11.1.0",
|
|
139
|
-
"yesno": "^0.4.0"
|
|
140
|
-
|
|
141
|
-
"tmp": "^0.2.3"
|
|
142
|
-
},
|
|
143
|
-
"dependencies": {}
|
|
141
|
+
"yesno": "^0.4.0"
|
|
142
|
+
}
|
|
144
143
|
}
|