Skip to content

Commit 1baa2e9

Browse files
committed
feat: remove bower.json and empty package-lock.json
1 parent e0ee63d commit 1baa2e9

File tree

4 files changed

+17
-26
lines changed

4 files changed

+17
-26
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ jobs:
4646
run: npm install
4747

4848
- name: Build source
49-
run: spago build --censor-stats --strict --pedantic-packages
49+
run: spago build --censor-stats --strict --ensure-ranges --pedantic-packages
5050

5151
- name: Run tests
52-
run: spago test --offline --censor-stats --strict --pedantic-packages -- --censor-codes=UserDefinedWarning
52+
run: spago test --offline --censor-stats --strict --pedantic-packages
5353

5454
- name: Verify formatting
5555
run: purs-tidy check src test

README.md

+10-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# purescript-bigints
22

3-
[![Latest release](http://img.shields.io/bower/v/purescript-bigints.svg)](https://github.com/sharkdp/purescript-bigints/releases)
3+
[![Latest release](http://img.shields.io/spago/v/purescript-bigints.svg)](https://github.com/sharkdp/purescript-bigints/releases)
44
[![Build Status](https://github.com/sharkdp/purescript-bigints/workflows/CI/badge.svg?branch=master)](https://github.com/sharkdp/purescript-bigints/actions?query=workflow%3ACI+branch%3Amaster)
55
[![Maintainer: gbagan](https://img.shields.io/badge/maintainer-gbagan-teal.svg)](https://github.com/gbagan)
66

@@ -10,7 +10,6 @@ A library for calculations with arbitrary length integers.
1010
This is a simple wrapper around [BigInteger.js](https://github.com/peterolson/BigInteger.js)
1111
by [Peter Olson](https://github.com/peterolson).
1212

13-
1413
## Module documentation
1514

1615
- [Published on Pursuit](http://pursuit.purescript.org/packages/purescript-bigints/)
@@ -33,16 +32,21 @@ true
3332
```
3433

3534
## Installation and usage
36-
You can install this package via Bower. You will also need [BigInteger.js](https://github.com/peterolson/BigInteger.js), which can be installed via `npm`:
35+
36+
You can install this package via spago. You will also need [BigInteger.js](https://github.com/peterolson/BigInteger.js), which can be installed via `npm`:
37+
3738
```
38-
bower install purescript-bigints
39+
spago install purescript-bigints
3940
npm install big-integer
4041
```
42+
4143
For the browser, remember to bundle `BigInteger.min.js` with your code.
4244

4345
## Development
46+
4447
```
45-
bower install
48+
spago install
4649
npm install
4750
```
48-
Then, use `pulp` to build, run tests and generate the documentation.
51+
52+
Then, use `spago` to build, run tests and generate the documentation.

bower.json

-13
This file was deleted.

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
"big-integer": "^1.6.52"
1010
},
1111
"devDependencies": {
12-
"bower": "^1.8.14",
13-
"pulp": "^16.0.2",
14-
"purescript-psa": "^0.9.0",
1512
"rimraf": "^6.0.1"
1613
},
17-
"type": "module"
18-
}
14+
"type": "module",
15+
"authors": [
16+
"David Peter <[email protected]>"
17+
]
18+
}

0 commit comments

Comments
 (0)