Skip to content

Commit 50c5a43

Browse files
author
Serhii Khoma
committed
feat: migrate to spago@next
1 parent 36a7afd commit 50c5a43

File tree

4 files changed

+12
-19
lines changed

4 files changed

+12
-19
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
output
2929
3030
- name: Build source
31-
run: spago build --censor-stats --strict --pedantic-packages
31+
run: spago build --censor-stats --strict --ensure-ranges --pedantic-packages
3232

3333
- name: Run tests
3434
run: spago test --offline --censor-stats --strict --pedantic-packages -- --censor-codes=UserDefinedWarning

bower.json

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,5 @@
66
"repository": {
77
"type": "git",
88
"url": "https://github.com/purescript-contrib/purescript-js-date.git"
9-
},
10-
"ignore": [
11-
"**/.*",
12-
"bower_components",
13-
"node_modules",
14-
"output",
15-
"bower.json",
16-
"package.json"
17-
]
9+
}
1810
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"scripts": {
4-
"build": "eslint src && spago build --censor-stats --strict --pedantic-packages",
4+
"build": "eslint src && spago build --censor-stats --strict --ensure-ranges --pedantic-packages",
55
"test": "spago test --offline"
66
},
77
"devDependencies": {

spago.yaml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
11
package:
22
name: js-date
3+
description: PureScript library for native JavaScript `Date` values
34
publish:
45
license: MIT
56
version: 8.0.0
67
location:
78
githubOwner: purescript-contrib
89
githubRepo: purescript-js-date
910
dependencies:
10-
- datetime
11-
- effect
12-
- enums
13-
- foreign
14-
- functions
15-
- integers
16-
- maybe
17-
- prelude
11+
- datetime: ">=6.1.0 <7.0.0"
12+
- effect: ">=4.0.0 <5.0.0"
13+
- enums: ">=6.0.1 <7.0.0"
14+
- foreign: ">=7.0.0 <8.0.0"
15+
- functions: ">=6.0.0 <7.0.0"
16+
- integers: ">=6.0.0 <7.0.0"
17+
- maybe: ">=6.0.0 <7.0.0"
18+
- prelude: ">=6.0.1 <7.0.0"
1819
test:
1920
main: Test.Main
2021
dependencies:

0 commit comments

Comments
 (0)