File tree 7 files changed +14
-11
lines changed
7 files changed +14
-11
lines changed Original file line number Diff line number Diff line change @@ -12,4 +12,5 @@ esdoc.json
12
12
gulpfile.babel.js
13
13
runTests.sh
14
14
runTests.ps1
15
+ buildDependencies.sh
15
16
node_modules /
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " neo4j-driver-bolt-connection" ,
3
- "version" : " 4.3.0" ,
3
+ "version" : " 4.3.0-dev " ,
4
4
"description" : " Implements the connection with the Neo4j Database using the Bolt Protocol" ,
5
5
"main" : " lib/index.js" ,
6
6
"types" : " types/index.d.ts" ,
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ npm --prefix core ci
4
+ npm --prefix core run build
5
+ npm --prefix bolt-connection ci
6
+ npm --prefix bolt-connection run build
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " neo4j-driver-core" ,
3
- "version" : " 4.3.0" ,
3
+ "version" : " 4.3.0-dev " ,
4
4
"description" : " Internals of neo4j-driver" ,
5
5
"main" : " lib/index.js" ,
6
6
"types" : " types/index.d.ts" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " neo4j-driver-lite" ,
3
- "version" : " 4.3.0" ,
3
+ "version" : " 4.3.0-dev " ,
4
4
"description" : " Connect to Neo4j 3.5.0 and up from JavaScript" ,
5
5
"main" : " lib/index.js" ,
6
6
"types" : " types/index.d.ts" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " neo4j-driver" ,
3
- "version" : " 4.0 .0-dev" ,
4
- "description" : " Connect to Neo4j 3.4 .0 and up from JavaScript" ,
3
+ "version" : " 4.3 .0-dev" ,
4
+ "description" : " Connect to Neo4j 3.5 .0 and up from JavaScript" ,
5
5
"author" : " Neo4j" ,
6
6
"license" : " Apache-2.0" ,
7
7
"repository" : {
20
20
"predocs" : " cd core && npm run docs" ,
21
21
"docs" : " esdoc -c esdoc.json" ,
22
22
"versionRelease" : " gulp set --x $VERSION && npm version $VERSION --no-git-tag-version" ,
23
- "browser" : " gulp browser && gulp test-browser" ,
24
- "prepack" : " cd core && npm pack && cd .. && npm i ./core/neo4j-driver-core-4.3.0.tgz && cd bolt-connection && npm pack && cd .. && npm i ./bolt-connection/neo4j-driver-bolt-connection-4.3.0.tgz"
23
+ "browser" : " gulp browser && gulp test-browser"
25
24
},
26
25
"husky" : {
27
26
"hooks" : {
Original file line number Diff line number Diff line change @@ -7,10 +7,7 @@ trap finish EXIT
7
7
8
8
npm install -g gulp typescript jest
9
9
10
- npm --prefix ./core/ ci
11
- npm --prefix ./core/ run build
12
- npm --prefix ./bolt-connection/ ci
13
- npm --prefix ./bolt-connection/ run build
10
+ ./buildDependencies.sh
14
11
15
12
npm ci
16
13
You can’t perform that action at this time.
0 commit comments