@atlaspack/package-manager 2.12.1-dev.3502 → 2.12.1-dev.3565

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/package-manager",
3
- "version": "2.12.1-dev.3502+c2daeab5a",
3
+ "version": "2.12.1-dev.3565+b31bc6b33",
4
4
  "description": "Blazing fast, zero configuration web application bundler",
5
5
  "license": "(MIT OR Apache-2.0)",
6
6
  "publishConfig": {
@@ -39,14 +39,14 @@
39
39
  }
40
40
  },
41
41
  "dependencies": {
42
- "@atlaspack/build-cache": "2.12.1-dev.3502+c2daeab5a",
43
- "@atlaspack/diagnostic": "2.12.1-dev.3502+c2daeab5a",
44
- "@atlaspack/fs": "2.12.1-dev.3502+c2daeab5a",
45
- "@atlaspack/logger": "2.12.1-dev.3502+c2daeab5a",
46
- "@atlaspack/node-resolver-core": "3.3.1-dev.3502+c2daeab5a",
47
- "@atlaspack/types": "2.12.1-dev.3502+c2daeab5a",
48
- "@atlaspack/utils": "2.12.1-dev.3502+c2daeab5a",
49
- "@atlaspack/workers": "2.12.1-dev.3502+c2daeab5a",
42
+ "@atlaspack/build-cache": "2.12.1-dev.3565+b31bc6b33",
43
+ "@atlaspack/diagnostic": "2.12.1-dev.3565+b31bc6b33",
44
+ "@atlaspack/fs": "2.12.1-dev.3565+b31bc6b33",
45
+ "@atlaspack/logger": "2.12.1-dev.3565+b31bc6b33",
46
+ "@atlaspack/node-resolver-core": "3.3.1-dev.3565+b31bc6b33",
47
+ "@atlaspack/types": "2.12.1-dev.3565+b31bc6b33",
48
+ "@atlaspack/utils": "2.12.1-dev.3565+b31bc6b33",
49
+ "@atlaspack/workers": "2.12.1-dev.3565+b31bc6b33",
50
50
  "@swc/core": "^1.7.26",
51
51
  "semver": "^7.5.2"
52
52
  },
@@ -62,5 +62,5 @@
62
62
  "./src/Pnpm.js": false,
63
63
  "./src/Yarn.js": false
64
64
  },
65
- "gitHead": "c2daeab5a12461903159dec34df5671eaaa9b749"
65
+ "gitHead": "b31bc6b33de40c158b9f4d8ff177238be0de409d"
66
66
  }
@@ -222,25 +222,20 @@ export function _addToInstallQueue(
222
222
  modulesInstalling.add(getModuleRequestKey(m));
223
223
  }
224
224
 
225
- queue
226
- .add(() =>
227
- install(
228
- fs,
229
- packageManager,
230
- modulesToInstall,
231
- filePath,
232
- projectRoot,
233
- options,
234
- ).then(() => {
235
- for (let m of modulesToInstall) {
236
- modulesInstalling.delete(getModuleRequestKey(m));
237
- }
238
- }),
239
- )
240
- .then(
241
- () => {},
242
- () => {},
243
- );
225
+ queue.add(() =>
226
+ install(
227
+ fs,
228
+ packageManager,
229
+ modulesToInstall,
230
+ filePath,
231
+ projectRoot,
232
+ options,
233
+ ).then(() => {
234
+ for (let m of modulesToInstall) {
235
+ modulesInstalling.delete(getModuleRequestKey(m));
236
+ }
237
+ }),
238
+ );
244
239
  }
245
240
 
246
241
  return queue.run();