piral-cli-webpack5 0.14.5-beta.3347 → 0.14.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/extend-config.js +2 -2
  2. package/package.json +3 -3
package/extend-config.js CHANGED
@@ -98,7 +98,7 @@ module.exports = function (override) {
98
98
  }
99
99
 
100
100
  if ('rules' in override && Array.isArray(override.rules)) {
101
- config.module.rules.push(...rules);
101
+ config.module.rules.push(...override.rules);
102
102
  }
103
103
 
104
104
  if ('removeRules' in override && Array.isArray(override.removeRules)) {
@@ -106,7 +106,7 @@ module.exports = function (override) {
106
106
  }
107
107
 
108
108
  if ('plugins' in override && Array.isArray(override.plugins)) {
109
- config.plugins.push(...plugins);
109
+ config.plugins.push(...override.plugins);
110
110
  }
111
111
 
112
112
  if ('removePlugins' in override && Array.isArray(override.removePlugins)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "piral-cli-webpack5",
3
- "version": "0.14.5-beta.3347",
3
+ "version": "0.14.5",
4
4
  "description": "Provides debug and build capabilities for pilets and Piral instances using Webpack v5.",
5
5
  "keywords": [
6
6
  "piral-cli",
@@ -48,7 +48,7 @@
48
48
  "@types/node": "^13.9.0",
49
49
  "@types/terser-webpack-plugin": "^5.0.0",
50
50
  "@types/yargs": "^15.0.4",
51
- "piral-cli": "0.14.5-beta.3347",
51
+ "piral-cli": "^0.14.5",
52
52
  "strip-ansi": "^3.0.0",
53
53
  "typescript": "^4.0.2"
54
54
  },
@@ -77,5 +77,5 @@
77
77
  "webpack": "^5.1.3",
78
78
  "webpack-inject-plugin": "^1.5.5"
79
79
  },
80
- "gitHead": "b0f46ae0f72d5da0fbf834d5c5f553cc70aaa648"
80
+ "gitHead": "d2c53e25895f855fb7be6f7a09afe6ebe8b599e6"
81
81
  }