Skip to content

Commit 1c10b8e

Browse files
authored
Merge branch 'master' into node12
2 parents ad91d31 + 61cd06d commit 1c10b8e

File tree

4 files changed

+6
-13
lines changed

4 files changed

+6
-13
lines changed

.travis.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,6 @@ env:
44
- CXX=g++-4.8
55

66
node_js:
7-
- 0.10
8-
- 0.12
9-
- iojs-2
10-
- 4
11-
- 6
12-
- 8
13-
- 10
147
- 12
158

169
addons:

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# node-cld
2-
[![Build Status](https://secure.travis-ci.org/dachev/node-cld.png)](http://travis-ci.org/#!/dachev/node-cld)
2+
[![*NIX Build Status](https://secure.travis-ci.org/dachev/node-cld.png)](https://travis-ci.org/dachev/node-cld)
3+
[![Windows Build Status](https://ci.appveyor.com/api/projects/status/github/dachev/node-cld?svg=true&retina=true)](https://ci.appveyor.com/project/dachev/node-cld)
34
[![Dependencies](https://david-dm.org/dachev/node-cld.png)](https://david-dm.org/dachev/node-cld)
45
[![NPM version](https://badge.fury.io/js/cld.svg)](http://badge.fury.io/js/cld)
56

@@ -63,7 +64,7 @@ Pass top level domain as a hint
6364
Pass an HTTP "Content-Encoding" value as a hint
6465

6566
## Warning
66-
Once the module has been installed, the underlying C source will remain in the ```deps/cld``` folder and continue to occupy considerable space. If you are under severe constraints you can delete this folder and reclam >100M
67+
Once the module has been installed, the underlying C sources will remain in the ```deps/cld``` folder and continue to occupy considerable space. This is because they will be required if you ever need to run `npm rebuild`. If you are under severe constraints you can delete this folder and reclam >100M
6768

6869
## Copyright
6970
Copyright 2011-2015, Blagovest Dachev.

bin/postinstall.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ function deleteBuildFiles(cb) {
1515
}
1616

1717
files = _.reject(files, function(val, key) {
18-
return /cld\.node$/.test(val)
18+
return /cld\.(node|pdb)$/.test(val)
1919
});
2020

2121
for (var i = 0; i < files.length; i++) {

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"cld",
99
"cld2"
1010
],
11-
"version": "2.4.8",
11+
"version": "2.5.0",
1212
"main": "./index",
1313
"dependencies": {
1414
"glob": "^5.0.10",
@@ -39,7 +39,6 @@
3939
}
4040
],
4141
"engines": {
42-
"node": ">=0.10.0",
43-
"iojs": ">=1.0.0"
42+
"node": ">=12.0.0"
4443
}
4544
}

0 commit comments

Comments
 (0)