Skip to content

Commit 26a3bc5

Browse files
committed
spago bump-version --no-dry-run patch
1 parent e9c896d commit 26a3bc5

File tree

3 files changed

+51
-70
lines changed

3 files changed

+51
-70
lines changed

LICENSE.txt

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2021 PureScript Contrib
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

bower.json

Lines changed: 28 additions & 70 deletions
Original file line numberDiff line numberDiff line change
@@ -1,72 +1,30 @@
11
{
2-
"name": "purescript-arraybuffer",
3-
"license": "MIT",
4-
"repository": {
5-
"type": "git",
6-
"url": "git://github.com/jacereda/purescript-arraybuffer.git"
7-
},
8-
"ignore": [
9-
"**/.*",
10-
"node_modules",
11-
"bower_components",
12-
"output"
13-
],
14-
"dependencies": {
15-
"purescript-prelude": "^5.0.0",
16-
"purescript-functions": "^5.0.0",
17-
"purescript-arraybuffer-types": "^2.0.0",
18-
"purescript-maybe": "^5.0.0",
19-
"purescript-effect": "^3.0.0",
20-
"purescript-nullable": "^5.0.0",
21-
"purescript-typelevel": "^6.0.0",
22-
"purescript-uint": "^5.1.4",
23-
"purescript-partial": "^3.0.0",
24-
"purescript-float32": "~0.2.0"
25-
},
26-
"devDependencies": {
27-
"purescript-debug": "^5.0.0",
28-
"purescript-quickcheck": "^7.0.0",
29-
"purescript-quickcheck-combinators": "~0.1.3",
30-
"purescript-quickcheck-laws": "^6.0.0"
31-
},
32-
"resolutions": {
33-
"purescript-effect": "^3.0.0",
34-
"purescript-functions": "^5.0.0",
35-
"purescript-partial": "^3.0.0",
36-
"purescript-prelude": "^5.0.0",
37-
"purescript-maybe": "^5.0.0",
38-
"purescript-quickcheck": "^7.0.0",
39-
"purescript-control": "^5.0.0",
40-
"purescript-invariant": "^5.0.0",
41-
"purescript-newtype": "^4.0.0",
42-
"purescript-quickcheck-laws": "^6.0.0",
43-
"purescript-arrays": "^6.0.0",
44-
"purescript-enums": "^5.0.0",
45-
"purescript-foldable-traversable": "^5.0.0",
46-
"purescript-console": "^5.0.0",
47-
"purescript-exceptions": "^5.0.0",
48-
"purescript-gen": "^3.0.0",
49-
"purescript-either": "^5.0.0",
50-
"purescript-integers": "^5.0.0",
51-
"purescript-lazy": "^5.0.0",
52-
"purescript-lcg": "^3.0.0",
53-
"purescript-lists": "^6.0.0",
54-
"purescript-identity": "^5.0.0",
55-
"purescript-math": "^3.0.0",
56-
"purescript-nonempty": "^6.0.0",
57-
"purescript-record": "^3.0.0",
58-
"purescript-st": "^5.0.0",
59-
"purescript-strings": "^5.0.0",
60-
"purescript-transformers": "^5.0.0",
61-
"purescript-tuples": "^6.0.0",
62-
"purescript-unfoldable": "^5.0.0",
63-
"purescript-tailrec": "^5.0.0",
64-
"purescript-unsafe-coerce": "^5.0.0",
65-
"purescript-orders": "^5.0.0",
66-
"purescript-bifunctors": "^5.0.0",
67-
"purescript-random": "^5.0.0",
68-
"purescript-distributive": "^5.0.0",
69-
"purescript-refs": "^5.0.0",
70-
"purescript-type-equality": "^4.0.0"
71-
}
2+
"name": "purescript-arraybuffer",
3+
"license": [
4+
"MIT"
5+
],
6+
"repository": {
7+
"type": "git",
8+
"url": "https://github.com/purescript-contrib/purescript-arraybuffer"
9+
},
10+
"ignore": [
11+
"**/.*",
12+
"node_modules",
13+
"bower_components",
14+
"output"
15+
],
16+
"dependencies": {
17+
"purescript-arraybuffer-types": "^v3.0.0",
18+
"purescript-arrays": "^v6.0.1",
19+
"purescript-effect": "^v3.0.0",
20+
"purescript-float32": "^v1.0.0",
21+
"purescript-functions": "^v5.0.0",
22+
"purescript-gen": "^v3.0.0",
23+
"purescript-maybe": "^v5.0.0",
24+
"purescript-nullable": "^v5.0.0",
25+
"purescript-prelude": "^v5.0.1",
26+
"purescript-tailrec": "^v5.0.1",
27+
"purescript-uint": "^v6.0.3",
28+
"purescript-unfoldable": "^v5.0.0"
29+
}
7230
}

spago.dhall

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,6 @@
1515
]
1616
, packages = ./packages.dhall
1717
, sources = [ "src/**/*.purs" ]
18+
, license = "MIT"
19+
, repository = "https://github.com/purescript-contrib/purescript-arraybuffer"
1820
}

0 commit comments

Comments
 (0)