We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c57595d commit 0454eb9Copy full SHA for 0454eb9
package.json
@@ -8,7 +8,8 @@
8
"scripts": {
9
"start": "cross-env NODE_ENV=development webpack serve --config config/webpack.dev.js",
10
"build": "cross-env NODE_ENV=production webpack --config config/webpack.prod.js",
11
- "lint": "eslint . src config || true"
+ "lint": "eslint . src config || true",
12
+ "prettify": "prettier --write 'src/**/*.js'"
13
},
14
"keywords": [
15
"webpack",
src/js/example.js
@@ -1,2 +1,3 @@
1
-export const example = () => `Sensible webpack 5 boilerplate using Babel and PostCSS with a hot dev server
+export const example =
2
+ () => `Sensible webpack 5 boilerplate using Babel and PostCSS with a hot dev server
3
and an optimized production build.`
0 commit comments