Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

resolves ockcarver/homebrew-frodo-cli#6 #393

Merged
merged 1 commit into from
Jun 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
resolves ockcarver/homebrew-frodo-cli#6
  • Loading branch information
vscheuber committed Jun 12, 2024
commit 53e7c5dd4a3f849149e5f5472e95082ff820f231
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed

- rockcarver/homebrew-frodo-cli#6: Homebrew formula now properly installs frodo

## [2.0.0-60] - 2024-06-11

### Changed
Expand Down
11 changes: 5 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,13 @@
"main": "dist/launch.cjs",
"scripts": {
"test": "npm run test:only",
"test:only": "NODE_OPTIONS=--experimental-vm-modules npx jest --silent",
"test:debug": "NODE_OPTIONS=--experimental-vm-modules npx jest --verbose=true --silent=false",
"test2": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:local": "npm run build && node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:debug2": "node --no-warnings --experimental-vm-modules --experimental-specifier-resolution=node node_modules/jest/bin/jest.js --verbose=true --silent=false",
"test:only": "NODE_OPTIONS='--no-warnings --experimental-vm-modules' npx jest --silent",
"test:debug": "NODE_OPTIONS='--no-warnings --experimental-vm-modules' npx jest --verbose=true --silent=false",
"lint": "eslint --ext .ts --ignore-path .gitignore .",
"lint:fix": "eslint --fix --ext .ts --ignore-path .gitignore .",
"build": "npx tsup && npm run dist-pkg",
"build": "npm run build:binary",
"build:only": "npx tsup",
"build:binary": "npm run build:only && npm run dist-pkg",
"dist-pkg": "pkg -C Gzip -t node18 --config package.json -o frodo dist/app.cjs",
"link": "npm link ../frodo-lib",
"dev": "npx tsup --watch src"
Expand Down
Loading