-
Notifications
You must be signed in to change notification settings - Fork 19
feat: update to spago@next #57
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
Merged
Merged
Changes from 1 commit
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
1c05acf
feat: update to spago@next
srghma 1fefb31
feat: tests -> add --pedantic-packages
srghma 37a878a
feat: tests -> use latest spago
srghma c56d1f4
refactor: use _
srghma 2f3c92b
Update parse-package-set/src/Main.purs
srghma 52e9edc
fix: Update parse-package-set/src/Main.purs as natefaubion suggested
srghma dbac5f3
fix: Update parse-package-set/src/Main.purs as natefaubion suggested …
srghma 6ac472a
Move lib back to root
natefaubion 2ff8142
Merge remote-tracking branch 'origin/main' into srghma-spago
natefaubion b0e4579
Update configs
natefaubion 49180c2
Update publish meta
natefaubion 64ddd63
Update ci cache
natefaubion 163aba2
Update CONTRIBUTORS.md -> add srghma
srghma 38bb69a
Disable parse-package-set
natefaubion 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 was deleted.
Oops, something went wrong.
This file contains hidden or 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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
package: | ||
name: bench | ||
dependencies: | ||
- minibench | ||
- aff | ||
- arrays | ||
- avar | ||
- console | ||
- const | ||
- control | ||
- datetime | ||
- effect | ||
- either | ||
- enums | ||
- exceptions | ||
- filterable | ||
- foldable-traversable | ||
- free | ||
- functions | ||
- functors | ||
- identity | ||
- integers | ||
- lazy | ||
- lists | ||
- maybe | ||
- newtype | ||
- node-buffer | ||
- node-child-process | ||
- node-fs | ||
- node-path | ||
- numbers | ||
- numbers | ||
- ordered-collections | ||
- parallel | ||
- partial | ||
- prelude | ||
- st | ||
- strings | ||
- transformers | ||
- tuples | ||
- typelevel-prelude | ||
- unfoldable | ||
- unsafe-coerce | ||
- language-cst-parser |
File renamed without changes.
File renamed without changes.
This file contains hidden or 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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
package: | ||
name: language-cst-parser | ||
dependencies: | ||
- arrays | ||
- console | ||
- const | ||
- control | ||
- effect | ||
- either | ||
- enums | ||
- foldable-traversable | ||
- free | ||
- functions | ||
- functors | ||
- identity | ||
- integers | ||
- lazy | ||
- lists | ||
- maybe | ||
- newtype | ||
- node-process | ||
- numbers | ||
- ordered-collections | ||
- partial | ||
- prelude | ||
- st | ||
- strings | ||
- transformers | ||
- tuples | ||
- typelevel-prelude | ||
- unfoldable | ||
- unsafe-coerce |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains hidden or 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 hidden or 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 |
---|---|---|
@@ -1,15 +1,15 @@ | ||
{ | ||
"private": true, | ||
"scripts": { | ||
"parse-package-set": "spago -x parse-package-set/parse-package-set.dhall run", | ||
"bench-file": "spago -x bench/bench.dhall build && node --expose-gc --input-type=\"module\" -e \"import { main } from './output/BenchFile/index.js';main()\"", | ||
"parse-file": "spago -x bench/bench.dhall build && node --input-type=\"module\" -e \"import { main } from './output/ParseFile/index.js';main()\" --", | ||
"format": "purs-tidy format-in-place src test bench parse-package-set", | ||
"check": "purs-tidy check src test bench parse-package-set" | ||
"parse-package-set": "spago run --package parse-package-set", | ||
"bench-file": "spago build --package bench && node --expose-gc --input-type=\"module\" -e \"import { main } from './output/BenchFile/index.js';main()\"", | ||
"parse-file": "spago build --package bench && node --input-type=\"module\" -e \"import { main } from './output/ParseFile/index.js';main()\"", | ||
"format": "purs-tidy format-in-place lib bench parse-package-set", | ||
"check": "purs-tidy check lib bench parse-package-set" | ||
}, | ||
"devDependencies": { | ||
"purescript": "^0.15.0", | ||
"purs-tidy": "^0.10.0", | ||
"spago": "^0.21.0" | ||
"purescript": "^0.15.15", | ||
"purs-tidy": "^0.11.0", | ||
"spago": "next" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
package: | ||
name: parse-package-set | ||
dependencies: | ||
- aff | ||
- arrays | ||
- avar | ||
- console | ||
- const | ||
- control | ||
- datetime | ||
- effect | ||
- either | ||
- enums | ||
- exceptions | ||
- filterable | ||
- foldable-traversable | ||
- free | ||
- functions | ||
- functors | ||
- identity | ||
- integers | ||
- lazy | ||
- lists | ||
- maybe | ||
- newtype | ||
- node-buffer | ||
- node-child-process | ||
- node-fs | ||
- node-path | ||
- argonaut-codecs | ||
- argonaut-core | ||
- numbers | ||
- numbers | ||
- ordered-collections | ||
- parallel | ||
- partial | ||
- prelude | ||
- st | ||
- strings | ||
- transformers | ||
- tuples | ||
- typelevel-prelude | ||
- unfoldable | ||
- unsafe-coerce | ||
- language-cst-parser |
File renamed without changes.
This file contains hidden or 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 was deleted.
Oops, something went wrong.
This file contains hidden or 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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
workspace: | ||
package_set: | ||
registry: 50.4.0 | ||
extra_packages: {} |
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.
Uh oh!
There was an error while loading. Please reload this page.