@mpxjs/webpack-plugin 2.7.34 → 2.7.35

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.
@@ -116,7 +116,7 @@ module.exports = function (source) {
116
116
  pluginEntry.pages = []
117
117
  }
118
118
 
119
- async.eachOf(pages, (page, key) => {
119
+ async.eachOf(pages, (page, key, callback) => {
120
120
  processPage(page, context, '', (err, entry) => {
121
121
  if (err === RESOLVE_IGNORED_ERR) {
122
122
  delete pages[key]
@@ -133,7 +133,7 @@ module.exports = function (source) {
133
133
  }
134
134
  callback()
135
135
  })
136
- })
136
+ }, callback)
137
137
  }
138
138
 
139
139
  async.parallel([
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mpxjs/webpack-plugin",
3
- "version": "2.7.34",
3
+ "version": "2.7.35",
4
4
  "description": "mpx compile core",
5
5
  "keywords": [
6
6
  "mpx"
@@ -80,5 +80,5 @@
80
80
  "engines": {
81
81
  "node": ">=14.14.0"
82
82
  },
83
- "gitHead": "358e525525f4e3d0d4e0cf73978c446c8e4909c6"
83
+ "gitHead": "c034d454986fe1f932784f26295d59328da951c3"
84
84
  }