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

Trigger CI - test if v0.14.0 package set still compiles due to newtype change #799

Closed
wants to merge 1 commit into from
Closed
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
1 change: 1 addition & 0 deletions src/packages.dhall
Original file line number Diff line number Diff line change
Expand Up @@ -102,4 +102,5 @@ let packages =
⫽ ./groups/colinwahl.dhall

in packages
{- If we update the compiler, we need to update this line, too -}
with metadata.version = "v0.14.0-rc5"
12 changes: 0 additions & 12 deletions src/shared.dhall

This file was deleted.

11 changes: 6 additions & 5 deletions src/updatedLibs.dhall
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{-
This file overrides the `shared.dhall` file's `dependencies` field.
It indicates all packages that have been updated to work without
This file indicates all packages that have been updated to work without
errors or warnings on the latest release candidate for PureScript v0.14.0
-}
let shared = ./shared.dhall
in shared
with dependencies =
{ name = "package-sets"
, packages = ./packages.dhall
, sources = [] : List Text
, dependencies =
[ "prelude"
, "effect"
, "functions"
Expand Down Expand Up @@ -135,3 +135,4 @@ in shared
, "react-dom"
, "ace"
]
}
8 changes: 5 additions & 3 deletions src/usePsa.dhall
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
{-
This file overrides the `shared.dhall` file's `sources` field.
Since `purescript-psa` will only fail when compiler warnings are emitted
in file globs for source files (rather than library files stored in
the `.spago/` directory, we must move those files into `src/`
and update the source globs below.
-}
let shared = ./shared.dhall
in shared with sources = [ "src/*/*/src/**/*.purs" ]
{ name = "package-sets"
, packages = ./packages.dhall
, sources = [ "src/*/*/src/**/*.purs" ]
, dependencies = [] : List Text
}