Skip to content

Commit ccead24

Browse files
Finish PureScript 0.15 update with Bower (#29)
* Finish PureScript 0.15 update with Bower * Add missing Bower dependency
1 parent 0ef42b2 commit ccead24

File tree

5 files changed

+38
-70
lines changed

5 files changed

+38
-70
lines changed

Diff for: .github/workflows/ci.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [master]
6+
pull_request:
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v2
13+
14+
- uses: purescript-contrib/setup-purescript@main
15+
16+
- uses: actions/setup-node@v2
17+
with:
18+
node-version: "14"
19+
20+
- name: Build and test with Spago
21+
run: spago test
22+
23+
- name: Build and test with Pulp
24+
run: |
25+
npx bower install
26+
npx pulp build
27+
npx pulp test

Diff for: .travis.yml

-19
This file was deleted.

Diff for: bower.json

+9-6
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"license": "MPL-2.0",
44
"repository": {
55
"type": "git",
6-
"url": "https://github.com/owickstrom/purescript-spec-discovery.git"
6+
"url": "https://github.com/purescript-spec/purescript-spec-discovery.git"
77
},
88
"ignore": [
99
"**/.*",
@@ -12,10 +12,13 @@
1212
"output"
1313
],
1414
"dependencies": {
15-
"purescript-prelude": "^5.0.0",
16-
"purescript-effect": "^3.0.0",
17-
"purescript-arrays": "^6.0.0",
18-
"purescript-spec": "^5.0.0",
19-
"purescript-node-fs": "^6.0.0"
15+
"purescript-prelude": "^6.0.0",
16+
"purescript-effect": "^4.0.0",
17+
"purescript-arrays": "^7.0.0",
18+
"purescript-spec": "^7.0.0",
19+
"purescript-node-fs": "^8.0.0"
20+
},
21+
"devDependencies": {
22+
"purescript-aff-promise": "^4.0.0"
2023
}
2124
}

Diff for: package.json

-24
This file was deleted.

Diff for: packages.dhall

+2-21
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,5 @@
11
let upstream =
2-
https://raw.githubusercontent.com/purescript/package-sets/prepare-0.15/src/packages.dhall
3-
sha256:5f32c078b014909642302b328bd9bebcdcedc301956a709b302f19521680a0aa
2+
https://github.com/purescript/package-sets/releases/download/psc-0.15.0-20220503/packages.dhall
3+
sha256:847d49acea4803c3d42ef46114053561e91840e35ede29f0a8014d09d47cd8df
44

55
in upstream
6-
with metadata.version = "v0.15.0-alpha-02"
7-
with spec =
8-
{ repo = "https://github.com/purescript-spec/purescript-spec.git"
9-
, version = "master"
10-
, dependencies =
11-
[ "aff"
12-
, "ansi"
13-
, "avar"
14-
, "console"
15-
, "exceptions"
16-
, "foldable-traversable"
17-
, "fork"
18-
, "now"
19-
, "pipes"
20-
, "prelude"
21-
, "strings"
22-
, "transformers"
23-
]
24-
}

0 commit comments

Comments
 (0)