Skip to content

Commit 4551bc8

Browse files
authored
set sideEffects false in all npm package.jsons (#1303)
1 parent 7b8452b commit 4551bc8

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

packages/bolt-connection/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"description": "Implements the connection with the Neo4j Database using the Bolt Protocol",
55
"main": "lib/index.js",
66
"types": "types/index.d.ts",
7+
"sideEffects": false,
78
"scripts": {
89
"build": "tsc",
910
"test": "jest --passWithNoTests",

packages/core/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"description": "Internals of neo4j-driver",
55
"main": "lib/index.js",
66
"types": "types/index.d.ts",
7+
"sideEffects": false,
78
"scripts": {
89
"build": "tsc -p tsconfig.build.json",
910
"build::es6": "tsc -p tsconfig.build.json --target ES6 --outdir lib6",

packages/neo4j-driver-lite/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"description": "The official Neo4j lite driver for Javascript",
55
"main": "lib/index.js",
66
"types": "types/index.d.ts",
7+
"sideEffects": false,
78
"scripts": {
89
"build": "tsc -p tsconfig.build.json",
910
"build::browser": "rollup --config rollup.config.js && npm run minify",

packages/neo4j-driver/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"engines": {
1212
"node": ">=18.0.0"
1313
},
14+
"sideEffects": false,
1415
"scripts": {
1516
"lint": "eslint --fix --ext .js ./",
1617
"test": "gulp test",

0 commit comments

Comments
 (0)