Skip to content
This repository was archived by the owner on Aug 11, 2021. It is now read-only.

Commit 1ed1871

Browse files
fix: Windows interop
1 parent 627f247 commit 1ed1871

File tree

3 files changed

+26
-5
lines changed

3 files changed

+26
-5
lines changed

.travis.yml

-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ language: node_js
33

44
matrix:
55
include:
6-
- node_js: 4
7-
env: CXX=g++-4.8
86
- node_js: 6
97
env:
108
- CXX=g++-4.8

appveyor.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
environment:
2+
matrix:
3+
- nodejs_version: "6"
4+
- nodejs_version: "8"
5+
6+
# cache:
7+
# - node_modules
8+
9+
platform:
10+
- x64
11+
12+
install:
13+
- ps: Install-Product node $env:nodejs_version $env:platform
14+
- npm install
15+
16+
test_script:
17+
- node --version
18+
- npm --version
19+
- npm test
20+
21+
build: off
22+
23+
version: "{build}"

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,15 @@
4343
"cids": "^0.5.1",
4444
"dirty-chai": "^2.0.1",
4545
"ipfs-block": "~0.6.0",
46-
"ipfs-repo": "~0.17.0",
46+
"ipfs-repo": "~0.18.0",
4747
"lodash": "^4.17.4",
4848
"multihashing-async": "^0.4.6",
4949
"ncp": "^2.0.0",
5050
"pre-commit": "^1.2.2",
5151
"rimraf": "^2.6.1"
5252
},
5353
"engines": {
54-
"node": ">=4.0.0",
54+
"node": ">=6.0.0",
5555
"npm": ">=3.0.0"
5656
},
5757
"dependencies": {},
@@ -66,4 +66,4 @@
6666
"npmcdn-to-unpkg-bot <npmcdn-to-unpkg-bot@users.noreply.github.com>",
6767
"wanderer <mjbecze@gmail.com>"
6868
]
69-
}
69+
}

0 commit comments

Comments
 (0)