File tree 6 files changed +9
-7
lines changed
6 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 7
7
"scripts" : {
8
8
"clean" : " lerna clean -y && lerna run clean" ,
9
9
"build" : " lerna bootstrap --ci" ,
10
+ "docs" : " lerna run docs --stream --concurrency 1" ,
10
11
"test::unit" : " lerna run test::unit --stream" ,
11
12
"test::integration" : " lerna run test::integration --stream" ,
12
13
"test::browser" : " lerna run test::browser --stream" ,
Original file line number Diff line number Diff line change @@ -358,10 +358,12 @@ class Session {
358
358
}
359
359
360
360
/**
361
+ * Sets the resolved database name in the session context.
361
362
* @private
362
363
* @param {string|undefined } database The resolved database name
364
+ * @returns {void }
363
365
*/
364
- _onDatabaseNameResolved ( database ?: string ) : void {
366
+ _onDatabaseNameResolved ( database ?: string ) : void {
365
367
if ( ! this . _databaseNameResolved ) {
366
368
const normalizedDatabase = database || ''
367
369
this . _database = normalizedDatabase
Original file line number Diff line number Diff line change 36
36
"enable" : false
37
37
},
38
38
"brand" : {
39
- "title" : " Neo4j Bolt Driver 4.3 for JavaScript" ,
39
+ "title" : " Neo4j Bolt Driver 4.4 for JavaScript" ,
40
40
"repository" : " https://github.com/neo4j/neo4j-javascript-driver"
41
41
}
42
42
}
43
43
},
44
44
{
45
- "name" : " ../docs/embed-docs.plugin.js" ,
45
+ "name" : " ../neo4j-driver/ docs/embed-docs.plugin.js" ,
46
46
"option" : {
47
47
"enabled" : true ,
48
48
"path" : " ../core/docs"
Original file line number Diff line number Diff line change 17
17
"version::set_version.ts" : " sed 's/0.0.0-dev/'$VERSION'/g' src/version.ts > src/version.tmp && mv src/version.tmp src/version.ts" ,
18
18
"versionRelease" : " npm version $VERSION --no-git-tag-version && npm run version::set_version.ts" ,
19
19
"build::es6" : " tsc --target ES6 --outdir lib6" ,
20
- "predocs" : " cd ../core && npm run docs && cd ../neo4j-driver-lite && npm run build && npm run build::es6" ,
20
+ "predocs" : " npm run build && npm run build::es6" ,
21
21
"docs" : " esdoc -c esdoc.json" ,
22
22
"prepare" : " npm run build && npm run build:browser" ,
23
23
"clean" : " rm -fr node_modules lib types"
Original file line number Diff line number Diff line change 36
36
"enable" : true
37
37
},
38
38
"brand" : {
39
- "title" : " Neo4j Bolt Driver 4.3 for JavaScript" ,
39
+ "title" : " Neo4j Bolt Driver 4.4 for JavaScript" ,
40
40
"repository" : " https://github.com/neo4j/neo4j-javascript-driver"
41
41
}
42
42
}
45
45
"name" : " ./docs/embed-docs.plugin.js" ,
46
46
"option" : {
47
47
"enabled" : true ,
48
- "path" : " ./core/docs"
48
+ "path" : " .. /core/docs"
49
49
}
50
50
}
51
51
]
Original file line number Diff line number Diff line change 21
21
"stop-neo4j" : " gulp stop-neo4j" ,
22
22
"run-stress-tests" : " gulp run-stress-tests-without-jasmine" ,
23
23
"run-ts-declaration-tests" : " gulp run-ts-declaration-tests" ,
24
- "predocs" : " cd core && npm run docs" ,
25
24
"docs" : " esdoc -c esdoc.json" ,
26
25
"versionRelease" : " gulp set --x $VERSION && npm version $VERSION --no-git-tag-version" ,
27
26
"browser" : " gulp browser && gulp test-browser" ,
You can’t perform that action at this time.
0 commit comments