Skip to content

Commit

Permalink
maint: Do not use --env for environment variables
Browse files Browse the repository at this point in the history
  • Loading branch information
frapell committed Oct 15, 2022
1 parent 35f4202 commit 63a33ff
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,14 @@
"clean": "rimraf docs/_site",
"build:webpack": "NODE_ENV=production webpack --config webpack.config.js",
"build:webpack:dev": "NODE_ENV=development webpack --config webpack.config.js",
"build:webpack:plone": "NODE_ENV=production webpack --config webpack.config.js --env DEPLOYMENT=plone",
"build:webpack:dev:plone": "NODE_ENV=development webpack --config webpack.config.js --env DEPLOYMENT=plone",
"build:webpack:plone": "NODE_ENV=production DEPLOYMENT=plone webpack --config webpack.config.js",
"build:webpack:dev:plone": "NODE_ENV=development DEPLOYMENT=plone webpack --config webpack.config.js",
"build:docs": "ELEVENTY_ENV=production npx @11ty/eleventy --output docs/_site/",
"build:stats": "NODE_ENV=production webpack --config webpack.config.js --json > stats.json",
"build:stats:plone": "NODE_ENV=production DEPLOYMENT=plone webpack --config webpack.config.js --json > stats.json",
"build": "run-s clean build:webpack build:docs",
"watch:webpack": "NODE_ENV=development webpack --config webpack.config.js --watch",
"watch:webpack:plone": "NODE_ENV=development webpack --config webpack.config.js --watch --env DEPLOYMENT=plone",
"watch:webpack:plone": "NODE_ENV=development DEPLOYMENT=plone webpack --config webpack.config.js --watch",
"postinstall": "patch --forward node_modules/select2/select2.js < patches/select2.patch || true",
"collect:externaldocs": "copyup -V node_modules/@patternslib/patternslib/src/pat/**/documentation.md node_modules/@patternslib/pat-*/README.md node_modules/pat-*/README.md docs/external/",
"start:webpack": "NODE_ENV=development webpack serve --config webpack.config.js",
Expand Down

0 comments on commit 63a33ff

Please sign in to comment.