@mpxjs/webpack-plugin 2.8.38 → 2.8.39

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.
@@ -2,6 +2,7 @@
2
2
  MIT License http://www.opensource.org/licenses/mit-license.php
3
3
  Author Tobias Koppers @sokra
4
4
  */
5
+ /* eslint no-var: off */
5
6
  module.exports = function (cssWithMappingToString) {
6
7
  var list = []
7
8
 
@@ -51,7 +52,7 @@ module.exports = function (cssWithMappingToString) {
51
52
  var alreadyImportedModules = {}
52
53
 
53
54
  if (dedupe) {
54
- for (let k = 0; k < this.length; k++) {
55
+ for (var k = 0; k < this.length; k++) {
55
56
  var id = this[k][0]
56
57
 
57
58
  if (id != null) {
@@ -60,8 +61,8 @@ module.exports = function (cssWithMappingToString) {
60
61
  }
61
62
  }
62
63
 
63
- for (var k = 0; k < modules.length; k++) {
64
- var item = [].concat(modules[k])
64
+ for (var k1 = 0; k1 < modules.length; k1++) {
65
+ var item = [].concat(modules[k1])
65
66
 
66
67
  if (dedupe && alreadyImportedModules[item[0]]) {
67
68
  continue
@@ -1,3 +1,4 @@
1
+ /* eslint no-var: off */
1
2
  module.exports = function (item) {
2
3
  var content = item[1]
3
4
  var cssMapping = item[3]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mpxjs/webpack-plugin",
3
- "version": "2.8.38",
3
+ "version": "2.8.39",
4
4
  "description": "mpx compile core",
5
5
  "keywords": [
6
6
  "mpx"
@@ -82,5 +82,5 @@
82
82
  "engines": {
83
83
  "node": ">=14.14.0"
84
84
  },
85
- "gitHead": "af1a776c06ec53a5005e3b3a0f444de80ff2cd2b"
85
+ "gitHead": "c11c93eeb5315c5ff54df7ace05709a21bdaea53"
86
86
  }