Skip to content

Set sideEffects false in all npm package jsons #1303

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/bolt-connection/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"description": "Implements the connection with the Neo4j Database using the Bolt Protocol",
"main": "lib/index.js",
"types": "types/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "tsc",
"test": "jest --passWithNoTests",
Expand Down
1 change: 1 addition & 0 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"description": "Internals of neo4j-driver",
"main": "lib/index.js",
"types": "types/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "tsc -p tsconfig.build.json",
"build::es6": "tsc -p tsconfig.build.json --target ES6 --outdir lib6",
Expand Down
1 change: 1 addition & 0 deletions packages/neo4j-driver-lite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"description": "The official Neo4j lite driver for Javascript",
"main": "lib/index.js",
"types": "types/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "tsc -p tsconfig.build.json",
"build::browser": "rollup --config rollup.config.js && npm run minify",
Expand Down
1 change: 1 addition & 0 deletions packages/neo4j-driver/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"engines": {
"node": ">=18.0.0"
},
"sideEffects": false,
"scripts": {
"lint": "eslint --fix --ext .js ./",
"test": "gulp test",
Expand Down