Skip to content

Commit 3fa614a

Browse files
fix(pg-node): drop no-op --send flag from npm script
index.mjs only inspects --upload-only; --send was silently ignored and worked by coincidence (anything not --upload-only falls through to send-email). Keep the flag set minimal. Closes #52
1 parent 8f312b9 commit 3fa614a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pg-node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"license": "MIT",
88
"scripts": {
99
"start": "node --env-file-if-exists=.env index.mjs",
10-
"send": "node --env-file-if-exists=.env index.mjs --send",
10+
"send": "node --env-file-if-exists=.env index.mjs",
1111
"upload": "node --env-file-if-exists=.env index.mjs --upload-only"
1212
},
1313
"dependencies": {

0 commit comments

Comments
 (0)