Skip to content

Commit efecdf5

Browse files
committed
feat: migrate to spago@next
1 parent 76764eb commit efecdf5

File tree

5 files changed

+44
-79
lines changed

5 files changed

+44
-79
lines changed

bower.json

Lines changed: 0 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -10,47 +10,5 @@
1010
"repository": {
1111
"type": "git",
1212
"url": "https://github.com/purescript-contrib/purescript-affjax.git"
13-
},
14-
"ignore": [
15-
"**/.*",
16-
"bower_components",
17-
"node_modules",
18-
"output",
19-
"test",
20-
"tmp",
21-
"bower.json",
22-
"gulpfile.js",
23-
"package.json"
24-
],
25-
"dependencies": {
26-
"purescript-aff": "^7.0.0",
27-
"purescript-argonaut-core": "^7.0.0",
28-
"purescript-arraybuffer-types": "^3.0.2",
29-
"purescript-arrays": "^7.0.0",
30-
"purescript-console": "^6.0.0",
31-
"purescript-control": "^6.0.0",
32-
"purescript-datetime": "^6.0.0",
33-
"purescript-effect": "^4.0.0",
34-
"purescript-either": "^6.0.0",
35-
"purescript-exceptions": "^6.0.0",
36-
"purescript-foldable-traversable": "^6.0.0",
37-
"purescript-foreign": "^7.0.0",
38-
"purescript-foreign-object": "^4.0.0",
39-
"purescript-form-urlencoded": "^7.0.0",
40-
"purescript-functions": "^6.0.0",
41-
"purescript-http-methods": "^6.0.0",
42-
"purescript-lists": "^7.0.0",
43-
"purescript-maybe": "^6.0.0",
44-
"purescript-media-types": "^6.0.0",
45-
"purescript-newtype": "^5.0.0",
46-
"purescript-nullable": "^6.0.0",
47-
"purescript-prelude": "^6.0.0",
48-
"purescript-transformers": "^6.0.0",
49-
"purescript-web-dom": "^6.0.0",
50-
"purescript-web-file": "^4.0.0",
51-
"purescript-web-xhr": "^5.0.0"
52-
},
53-
"devDependencies": {
54-
"purescript-psci-support": "^6.0.0"
5513
}
5614
}

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 --purs-args '--censor-lib --strict'"
4+
"build": "eslint src && spago build --censor-stats --strict --ensure-ranges --pedantic-packages"
55
},
66
"devDependencies": {
77
"body-parser": "^1.19.0",

packages.dhall

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

spago.dhall

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

spago.yaml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
package:
2+
name: affjax
3+
description: An asynchronous AJAX library built using Aff.
4+
publish:
5+
license: Apache-2.0
6+
version: 13.0.0
7+
location:
8+
githubOwner: purescript-contrib
9+
githubRepo: purescript-affjax
10+
dependencies:
11+
- aff: ">=8.0.0 <9.0.0"
12+
- argonaut-core: ">=7.0.0 <8.0.0"
13+
- arraybuffer-types: ">=3.0.2 <4.0.0"
14+
- arrays: ">=7.3.0 <8.0.0"
15+
- console: ">=6.1.0 <7.0.0"
16+
- control: ">=6.0.0 <7.0.0"
17+
- datetime: ">=6.1.0 <7.0.0"
18+
- effect: ">=4.0.0 <5.0.0"
19+
- either: ">=6.1.0 <7.0.0"
20+
- exceptions: ">=6.1.0 <7.0.0"
21+
- foldable-traversable: ">=6.0.0 <7.0.0"
22+
- foreign: ">=7.0.0 <8.0.0"
23+
- foreign-object: ">=4.1.0 <5.0.0"
24+
- form-urlencoded: ">=7.0.0 <8.0.0"
25+
- functions: ">=6.0.0 <7.0.0"
26+
- http-methods: ">=6.0.0 <7.0.0"
27+
- lists: ">=7.0.0 <8.0.0"
28+
- maybe: ">=6.0.0 <7.0.0"
29+
- media-types: ">=6.0.0 <7.0.0"
30+
- newtype: ">=5.0.0 <6.0.0"
31+
- nullable: ">=6.0.0 <7.0.0"
32+
- prelude: ">=6.0.1 <7.0.0"
33+
- transformers: ">=6.1.0 <7.0.0"
34+
- web-dom: ">=6.0.0 <7.0.0"
35+
- web-file: ">=4.0.0 <5.0.0"
36+
- web-xhr: ">=5.0.1 <6.0.0"
37+
test:
38+
main: Test.Main
39+
dependencies: []
40+
workspace:
41+
packageSet:
42+
registry: 60.5.0
43+
extraPackages: {}

0 commit comments

Comments
 (0)