Skip to content

Commit 8e9a16d

Browse files
Update dependencies for PureScript 0.14 and switch to GH Actions (#23)
1 parent c449ae1 commit 8e9a16d

File tree

6 files changed

+49
-29
lines changed

6 files changed

+49
-29
lines changed

.github/workflows/ci.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [master]
6+
pull_request:
7+
branches: [master]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v2
14+
15+
- uses: purescript-contrib/setup-purescript@main
16+
with:
17+
purescript: "0.14.0-rc3"
18+
19+
- uses: actions/setup-node@v1
20+
with:
21+
node-version: "12"
22+
23+
- name: Install dependencies
24+
run: |
25+
npm install -g bower
26+
npm install
27+
bower install --production
28+
29+
- name: Build source
30+
run: npm run-script build
31+
32+
- name: Run tests
33+
run: |
34+
bower install
35+
npm run-script test --if-present

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/.*
22
!/.gitignore
33
!/.eslintrc.json
4-
!/.travis.yml
4+
!/.github/
55
package-lock.json
66
/bower_components/
77
/node_modules/

.travis.yml

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

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
# purescript-dom-indexed
22

3-
[![Latest release](http://img.shields.io/github/release/slamdata/purescript-dom-indexed.svg)](https://github.com/slamdata/purescript-dom-indexed/releases)
4-
[![Build status](https://travis-ci.org/slamdata/purescript-dom-indexed.svg?branch=master)](https://travis-ci.org/slamdata/purescript-dom-indexed)
3+
[![Latest release](http://img.shields.io/github/release/purescript-halogen/purescript-dom-indexed.svg)](https://github.com/purescript-halogen/purescript-dom-indexed/releases)
4+
[![Build status](https://github.com/purescript-halogen/purescript-dom-indexed/workflows/CI/badge.svg?branch=master)](https://github.com/purescript-halogen/purescript-dom-indexed/actions?query=workflow%3ACI+branch%3Amaster)
5+
[![Pursuit](https://pursuit.purescript.org/packages/purescript-dom-indexed/badge)](https://pursuit.purescript.org/packages/purescript-dom-indexed)
56

67
Typed DOM attributes and properties
78

89
## Installation
910

1011
```
11-
bower install purescript-dom-indexed
12+
spago install dom-indexed
1213
```
1314

1415
## Documentation

bower.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22

33
"name": "purescript-dom-indexed",
4-
"homepage": "https://github.com/slamdata/purescript-dom-indexed",
4+
"homepage": "https://github.com/purescript-halogen/purescript-dom-indexed",
55
"description": "Typed DOM attributes and properties",
66
"license": "Apache-2.0",
77
"repository": {
88
"type": "git",
9-
"url": "git://github.com/slamdata/purescript-dom-indexed.git"
9+
"url": "https://github.com/purescript-halogen/purescript-dom-indexed.git"
1010
},
1111
"ignore": [
1212
"**/.*",
@@ -16,9 +16,9 @@
1616
"package.json"
1717
],
1818
"dependencies": {
19-
"purescript-media-types": "^4.0.0",
20-
"purescript-prelude": "^4.0.0",
21-
"purescript-web-clipboard": "^2.0.0",
22-
"purescript-web-touchevents": "^2.0.0"
19+
"purescript-media-types": "main",
20+
"purescript-prelude": "master",
21+
"purescript-web-clipboard": "master",
22+
"purescript-web-touchevents": "master"
2323
}
2424
}

package.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@
55
"build": "pulp build -- --censor-lib --strict"
66
},
77
"devDependencies": {
8-
"pulp": "^12.2.0",
9-
"purescript-psa": "^0.6.0",
10-
"purescript": "slamdata/node-purescript#0.12",
11-
"rimraf": "^2.6.2"
8+
"pulp": "^15.0.0",
9+
"purescript-psa": "^0.8.0",
10+
"rimraf": "^3.0.2"
1211
}
1312
}

0 commit comments

Comments
 (0)