Skip to content

Commit

Permalink
Silence useless node deprecation warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
fregante committed Nov 8, 2024
1 parent ecb88eb commit 50a4e2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"private": true,
"scripts": {
"build": "parcel build",
"build": "NODE_NO_WARNINGS=1 parcel build",
"lint": "run-p lint:*",
"lint-fix": "run-p 'lint:* -- --fix'",
"lint:css": "stylelint source/**/*.css",
"lint:js": "xo",
"test": "run-p lint:* build",
"watch": "parcel watch --no-hmr"
"watch": "NODE_NO_WARNINGS=1 parcel watch --no-hmr"
},
"browserslist": [
"last 1 Chrome version",
Expand Down

0 comments on commit 50a4e2d

Please sign in to comment.