@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 CHANGED
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ### Fixed
11
+
12
+ - rockcarver/homebrew-frodo-cli#6: Homebrew formula now properly installs frodo
13
+
14
+ ## [2.0.0-60] - 2024-06-11
15
+
10
16
  ### Changed
11
17
 
12
18
  - Update to frodo-lib 2.0.0-85
@@ -1560,7 +1566,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1560
1566
  - Fixed problem with adding connection profiles
1561
1567
  - Miscellaneous bug fixes
1562
1568
 
1563
- [Unreleased]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-59...HEAD
1569
+ [Unreleased]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-60...HEAD
1570
+
1571
+ [2.0.0-60]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-59...v2.0.0-60
1564
1572
 
1565
1573
  [2.0.0-59]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-58...v2.0.0-59
1566
1574
 
package/dist/app.cjs CHANGED
@@ -186090,7 +186090,7 @@ var compareVersions = (v12, v2) => {
186090
186090
  // package.json
186091
186091
  var package_default2 = {
186092
186092
  name: "@rockcarver/frodo-cli",
186093
- version: "2.0.0-60",
186093
+ version: "2.0.0-61",
186094
186094
  type: "module",
186095
186095
  description: "A command line interface to manage ForgeRock Identity Cloud tenants, ForgeOps deployments, and classic deployments.",
186096
186096
  keywords: [
@@ -186120,14 +186120,13 @@ var package_default2 = {
186120
186120
  main: "dist/launch.cjs",
186121
186121
  scripts: {
186122
186122
  test: "npm run test:only",
186123
- "test:only": "NODE_OPTIONS=--experimental-vm-modules npx jest --silent",
186124
- "test:debug": "NODE_OPTIONS=--experimental-vm-modules npx jest --verbose=true --silent=false",
186125
- test2: "node --experimental-vm-modules node_modules/jest/bin/jest.js",
186126
- "test:local": "npm run build && node --experimental-vm-modules node_modules/jest/bin/jest.js",
186127
- "test:debug2": "node --no-warnings --experimental-vm-modules --experimental-specifier-resolution=node node_modules/jest/bin/jest.js --verbose=true --silent=false",
186123
+ "test:only": "NODE_OPTIONS='--no-warnings --experimental-vm-modules' npx jest --silent",
186124
+ "test:debug": "NODE_OPTIONS='--no-warnings --experimental-vm-modules' npx jest --verbose=true --silent=false",
186128
186125
  lint: "eslint --ext .ts --ignore-path .gitignore .",
186129
186126
  "lint:fix": "eslint --fix --ext .ts --ignore-path .gitignore .",
186130
- build: "npx tsup && npm run dist-pkg",
186127
+ build: "npm run build:binary",
186128
+ "build:only": "npx tsup",
186129
+ "build:binary": "npm run build:only && npm run dist-pkg",
186131
186130
  "dist-pkg": "pkg -C Gzip -t node18 --config package.json -o frodo dist/app.cjs",
186132
186131
  link: "npm link ../frodo-lib",
186133
186132
  dev: "npx tsup --watch src"