New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

next-purgecss

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

next-purgecss - npm Package Compare versions

Comparing version

to
3.1.2

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 @@ )