next-purgecss
Advanced tools
Comparing version
31
index.js
@@ -17,21 +17,20 @@ const path = require('path') | ||
webpack: (webpackConfig, options) => { | ||
// Don't add plugin unless PurgeCSS is enabled | ||
const { dev, isServer } = options | ||
if (!purgeCssEnabled({ dev, isServer })) { | ||
return webpackConfig | ||
// Only add plugin when PurgeCSS is enabled | ||
if (purgeCssEnabled({ dev, isServer })) { | ||
webpackConfig.plugins.push( | ||
new PurgecssPlugin({ | ||
paths: () => | ||
glob.sync( | ||
purgeCssPaths.map(p => path.join(webpackConfig.context, p)), | ||
{ | ||
nodir: true | ||
} | ||
), | ||
...purgeCss | ||
}) | ||
) | ||
} | ||
webpackConfig.plugins.push( | ||
new PurgecssPlugin({ | ||
paths: () => | ||
glob.sync( | ||
purgeCssPaths.map(p => path.join(webpackConfig.context, p)), | ||
{ | ||
nodir: true | ||
} | ||
), | ||
...purgeCss | ||
}) | ||
) | ||
if (typeof webpack === 'function') { | ||
@@ -38,0 +37,0 @@ return webpack(webpackConfig, options) |
{ | ||
"name": "next-purgecss", | ||
"version": "3.1.1", | ||
"version": "3.1.2", | ||
"keywords": [ | ||
@@ -33,4 +33,4 @@ "next-plugins", | ||
"eslint-config-prettier": "^6.0.0", | ||
"husky": "^2.5.0", | ||
"lint-staged": "^8.2.1", | ||
"husky": "^3.0.0", | ||
"lint-staged": "^9.2.0", | ||
"prettier": "^1.18.2" | ||
@@ -37,0 +37,0 @@ }, |
@@ -60,3 +60,3 @@ # next-purgecss | ||
withPurgeCss({ | ||
purgeCssEnabled: ({ dev, isServer }) => (!isDev && !isServer) // Only enable PurgeCSS for client-side production builds | ||
purgeCssEnabled: ({ dev, isServer }) => (!dev && !isServer) // Only enable PurgeCSS for client-side production builds | ||
}) | ||
@@ -63,0 +63,0 @@ ) |
5146
-0.17%36
-2.7%