-
Notifications
You must be signed in to change notification settings - Fork 526
windows support via cross-env #1059
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,15 +24,15 @@ | |
}, | ||
"scripts": { | ||
"bundle": "npm run format:write && npm run package", | ||
"ci-test": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 npx jest", | ||
"ci-test": "cross-env NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 npx jest", | ||
"coverage": "npx make-coverage-badge --output-path ./badges/coverage.svg", | ||
"format:write": "npx prettier --write .", | ||
"format:check": "npx prettier --check .", | ||
"lint": "npx eslint .", | ||
"local-action": "npx @github/local-action . src/main.ts .env", | ||
"package": "npx rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript", | ||
"package:watch": "npm run package -- --watch", | ||
"test": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 npx jest", | ||
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 npx jest", | ||
"all": "npm run format:write && npm run lint && npm run test && npm run coverage && npm run package" | ||
}, | ||
"license": "MIT", | ||
|
@@ -50,6 +50,7 @@ | |
"@types/node": "^20.17.48", | ||
"@typescript-eslint/eslint-plugin": "^8.32.1", | ||
"@typescript-eslint/parser": "^8.32.1", | ||
"cross-env": "^7.0.3", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [nitpick] Consider updating the project README to note the addition of Copilot uses AI. Check for mistakes. Positive FeedbackNegative Feedback |
||
"eslint": "^9.27.0", | ||
"eslint-config-prettier": "^10.1.5", | ||
"eslint-import-resolver-typescript": "^4.3.5", | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] The
ci-test
andtest
scripts are nearly identical; consider extracting the common invocation into a shared npm script (e.g.,env-test
) to reduce duplication.Copilot uses AI. Check for mistakes.