-
-
Notifications
You must be signed in to change notification settings - Fork 26
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
Turbo-ize #164
Merged
Merged
Turbo-ize #164
Changes from 1 commit
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
9cfbd0d
chore: ignore vscode
lishaduck 99432af
chore: commonjs
lishaduck 971111e
chore: pm
lishaduck 9b1b3a2
chore(deps-dev): upgrade ts
lishaduck 90108ca
style: predicates
lishaduck 7d076f2
chore(deps-dev): bump
lishaduck 66db058
chore: delete dead code
lishaduck 6755630
chore: migrate to turbo
lishaduck File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,3 +35,5 @@ test/elm-review-*.tgz | |
.idea/ | ||
ElmjutsuDumMyM0DuL3.elm | ||
.vscode/ | ||
|
||
.turbo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,3 +9,4 @@ | |
test/**/*.json | ||
test/temporary/ | ||
vendor/exit.js | ||
.turbo |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,16 +9,13 @@ | |
"packageManager": "[email protected]", | ||
"scripts": { | ||
"elm-format": "elm-format --validate ast-codec init-templates new-package parseElm review template", | ||
"test": "npm-run-all --print-name --silent elm-tests elm-format tsc eslint-check prettier-check test-run", | ||
"test:parallel": "npm-run-all --print-name --silent --parallel elm-tests elm-format tsc eslint-check prettier-check test-run", | ||
"eslint-check": "eslint . --report-unused-disable-directives", | ||
"eslint-fix": "npm run eslint-check -- --fix", | ||
"js-fix": "npm run eslint-fix && npm run prettier-fix", | ||
"prettier-check": "prettier . --check", | ||
"prettier-fix": "prettier . --write", | ||
"tsc": "tsc && tsc --project tsconfig.no-implicit-any.json", | ||
"tsc-watch": "tsc --watch", | ||
"elm-tests": "(cd template/ && elm make src/Elm/Review/Main.elm --output=/dev/null) && (cd template/ && elm-test)", | ||
"elm-tests": "(cd template/ && elm make src/Elm/Review/Main.elm --output=/dev/null && elm-test)", | ||
"test-run": "npx jest && (cd test/ && ./run.sh)", | ||
"test-run-record": "(cd test/ && ./run.sh record)", | ||
"prepare": "elm-tooling install", | ||
|
@@ -116,14 +113,15 @@ | |
"elm-tooling": "^1.15.1", | ||
"eslint": "^8.57.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-config-turbo": "^2.0.4", | ||
"eslint-config-xo": "^0.43.1", | ||
"eslint-plugin-node": "^11.1.0", | ||
"eslint-plugin-unicorn": "^52.0.0", | ||
"jest": "^27.3.1", | ||
"jest-file-snapshot": "^0.5.0", | ||
"ls-engines": "^0.9.2", | ||
"npm-run-all": "^4.1.5", | ||
"prettier": "^2.8.8", | ||
"turbo": "^2.0.4", | ||
"typescript": "~5.5.2", | ||
"uglify-js": "^3.18.0" | ||
} | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Do you know if it's possible to keep a test script so that I can just run
npm test
?