Skip to content

Commit c735467

Browse files
Update for PureScript 0.15 (#14)
* Update for PureScript 0.15 * Update bower.json
1 parent 7f0b52f commit c735467

File tree

5 files changed

+41
-23
lines changed

5 files changed

+41
-23
lines changed

.github/workflows/ci.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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+
with:
16+
purescript: "unstable"
17+
18+
- uses: actions/setup-node@v2
19+
with:
20+
node-version: "14"
21+
22+
- name: Install dependencies
23+
run: |
24+
npm install -g bower
25+
npm install
26+
bower install --production
27+
28+
- name: Build source
29+
run: npm run-script build
30+
31+
- name: Run tests
32+
run: |
33+
bower install
34+
npm run-script test --if-present

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/.*
22
!/.gitignore
3-
!/.travis.yml
3+
!/.github
44
/bower_components/
55
/node_modules/
66
/output/

.travis.yml

Lines changed: 0 additions & 16 deletions
This file was deleted.

bower.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
},
88
"ignore": ["**/.*", "node_modules", "bower_components", "output"],
99
"dependencies": {
10-
"purescript-prelude": "^5.0.0",
11-
"purescript-halogen-vdom": "^7.0.0",
12-
"purescript-ordered-collections": "^2.0.0",
13-
"purescript-foreign": "^6.0.0"
10+
"purescript-prelude": "^6.0.0",
11+
"purescript-halogen-vdom": "^8.0.0",
12+
"purescript-ordered-collections": "^3.0.0",
13+
"purescript-foreign": "^7.0.0"
1414
}
1515
}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
"build": "pulp build -- --censor-lib --strict"
66
},
77
"devDependencies": {
8-
"pulp": "^15.0.0",
8+
"pulp": "^16.0.0-0",
99
"purescript-psa": "^0.8.2",
10-
"purescript": "^0.14.1",
10+
"purescript": "^0.15.0-0",
1111
"rimraf": "^3.0.2"
1212
},
1313
"dependencies": {

0 commit comments

Comments
 (0)