Skip to content

Commit 8d49f00

Browse files
Update to v0.15.0 (#47)
Co-authored-by: Thomas Honeyman <[email protected]>
1 parent 5a79052 commit 8d49f00

File tree

6 files changed

+23
-17
lines changed

6 files changed

+23
-17
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ jobs:
1616
- name: Set up a PureScript toolchain
1717
uses: purescript-contrib/setup-purescript@main
1818
with:
19+
purescript: "unstable"
1920
purs-tidy: "latest"
2021

2122
- name: Cache PureScript dependencies
@@ -32,8 +33,17 @@ jobs:
3233
- name: Build source
3334
run: spago build --no-install --purs-args '--censor-lib --strict'
3435

35-
- name: Run tests
36-
run: spago test --no-install
36+
# - name: Run tests
37+
# run: spago test --no-install
3738

3839
- name: Check formatting
3940
run: purs-tidy check src test
41+
42+
- name: Verify Bower & Pulp
43+
run: |
44+
npm install bower [email protected]
45+
npx bower install
46+
npx pulp build -- --censor-lib --strict
47+
if [ -d "test" ]; then
48+
npx pulp test
49+
fi

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Notable changes to this project are documented in this file. The format is based
55
## [Unreleased]
66

77
Breaking changes:
8+
- Update project and deps to PureScript v0.15.0 (#47 by @JordanMartinez)
89

910
New features:
1011

bower.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@
1616
"!LICENSE"
1717
],
1818
"dependencies": {
19-
"purescript-contravariant": "^5.0.0",
20-
"purescript-foreign": "^6.0.0",
21-
"purescript-foreign-object": "^3.0.0",
22-
"purescript-maybe": "^5.0.0",
23-
"purescript-tuples": "^6.0.0"
19+
"purescript-contravariant": "master",
20+
"purescript-foreign": "master",
21+
"purescript-foreign-object": "master",
22+
"purescript-maybe": "master",
23+
"purescript-tuples": "master"
2424
},
2525
"devDependencies": {
26-
"purescript-assert": "^5.0.0",
27-
"purescript-console": "^5.0.0",
28-
"purescript-effect": "^3.0.0"
26+
"purescript-assert": "master",
27+
"purescript-console": "master",
28+
"purescript-effect": "master"
2929
}
3030
}

packages.dhall

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
let upstream =
2-
https://github.com/purescript/package-sets/releases/download/psc-0.14.3-20210722/packages.dhall sha256:1ceb43aa59436bf5601bac45f6f3781c4e1f0e4c2b8458105b018e5ed8c30f8c
2+
https://raw.githubusercontent.com/purescript/package-sets/prepare-0.15/src/packages.dhall
33

44
in upstream

spago.dhall

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
, "maybe"
1010
, "newtype"
1111
, "prelude"
12-
, "psci-support"
1312
, "tuples"
1413
]
1514
, packages = ./packages.dhall

test/Test/Main.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
'use strict';
2-
3-
function showForeign(a){
1+
export function showForeign(a){
42
return JSON.stringify(a);
53
}
6-
7-
exports.showForeign = showForeign;

0 commit comments

Comments
 (0)