Skip to content

Commit 024de39

Browse files
authored
Merge pull request #179 from lutovich/1.0-post-release-cleanup
Improve readme and remove safe publish plugin
2 parents b9df625 + 5ecb373 commit 024de39

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,21 @@ Find detailed docs [here](http://neo4j.com/docs/api/javascript-driver/current/).
66

77
## Include module in Node.js application
88

9+
Stable channel:
910
```shell
1011
npm install neo4j-driver
1112
// or
1213
bower install neo4j-driver
1314
```
1415

16+
Pre-release channel:
17+
```shell
18+
npm install neo4j-driver@next
19+
```
20+
21+
Please note that `@next` only points to pre-releases that are not suitable for production use.
22+
To get the latest stable release omit `@next` part altogether or use `@latest` instead.
23+
1524
```javascript
1625
var neo4j = require('neo4j-driver');
1726
```

package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@
1414
"start-neo4j": "gulp start-neo4j",
1515
"stop-neo4j": "gulp stop-neo4j",
1616
"run-tck": "gulp run-tck",
17-
"docs": "esdoc -c esdoc.json",
18-
"publishRelease": "npm-publish-safe-latest next"
17+
"docs": "esdoc -c esdoc.json"
1918
},
2019
"main": "lib/index.js",
2120
"devDependencies": {
@@ -43,7 +42,6 @@
4342
"jasmine-reporters": "^2.0.7",
4443
"merge-stream": "^1.0.0",
4544
"minimist": "^1.2.0",
46-
"npm-publish-safe-latest": "^1.1.6",
4745
"phantomjs-prebuilt": "^2.1.7 ",
4846
"run-sequence": "^1.1.4",
4947
"through2": "~2.0.0",

0 commit comments

Comments
 (0)