Skip to content

Commit 1da8364

Browse files
committed
Use spago
1 parent 4e9475b commit 1da8364

File tree

8 files changed

+542
-42
lines changed

8 files changed

+542
-42
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ jobs:
2121
restore-keys: |
2222
${{ runner.os }}-npm-
2323
24-
- name: Cache bower modules
24+
- name: Cache spago modules
2525
uses: actions/cache@v1
2626
with:
27-
path: bower_components
28-
key: ${{ runner.os }}-deps-${{ hashFiles('bower.json') }}
27+
path: .spago
28+
key: ${{ runner.os }}-deps-${{ hashFiles('packages.dhall') }}-${{ hashFiles('spago.dhall') }}-${{ hashFiles('test.dhall') }}
2929
restore-keys: |
3030
${{ runner.os }}-deps-
3131

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
/.pulp-cache/
44
/output/
55
/generated-docs/
6+
/.psc-package/
67
/.psc*
78
/.purs*
89
/.psa*
10+
/.spago

bower.json

Lines changed: 26 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,28 @@
11
{
2-
"name": "purescript-bucketchain-header-utils",
3-
"license": "MIT",
4-
"homepage": "https://github.com/Bucketchain/purescript-bucketchain-header-utils",
5-
"authors": [
6-
"Shinya Takahashi <s.takahashi313@gmail.com>"
7-
],
8-
"description": "The HTTP header utilities of Bucketchain.",
9-
"keywords": [
10-
"purescript",
11-
"webserver",
12-
"header"
13-
],
14-
"repository": {
15-
"type": "git",
16-
"url": "https://github.com/Bucketchain/purescript-bucketchain-header-utils"
17-
},
18-
"moduleType": [
19-
"node"
20-
],
21-
"ignore": [
22-
"**/.*",
23-
"node_modules",
24-
"bower_components",
25-
"output"
26-
],
27-
"dependencies": {
28-
"purescript-bucketchain": "^1.0.0"
29-
},
30-
"devDependencies": {
31-
"purescript-assert": "^6.0.0"
32-
}
2+
"name": "purescript-bucketchain-header-utils",
3+
"license": [
4+
"MIT"
5+
],
6+
"repository": {
7+
"type": "git",
8+
"url": "https://github.com/Bucketchain/purescript-bucketchain-header-utils"
9+
},
10+
"ignore": [
11+
"**/.*",
12+
"node_modules",
13+
"bower_components",
14+
"output"
15+
],
16+
"dependencies": {
17+
"purescript-arrays": "^v7.1.0",
18+
"purescript-bucketchain": "^v1.0.1",
19+
"purescript-datetime": "^v6.1.0",
20+
"purescript-effect": "^v4.0.0",
21+
"purescript-foreign-object": "^v4.1.0",
22+
"purescript-integers": "^v6.0.0",
23+
"purescript-maybe": "^v6.0.0",
24+
"purescript-prelude": "^v6.0.1",
25+
"purescript-strings": "^v6.0.1",
26+
"purescript-tuples": "^v7.0.0"
27+
}
3328
}

0 commit comments

Comments
 (0)