@atlaspack/core 2.16.2-canary.111 → 2.16.2-canary.112

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/lib/Atlaspack.js CHANGED
@@ -224,13 +224,13 @@ class Atlaspack {
224
224
  defaultTargetOptions: resolvedOptions.defaultTargetOptions,
225
225
  lmdb
226
226
  });
227
+ if (featureFlags.atlaspackV3CleanShutdown) {
228
+ this.#disposable.add(() => {
229
+ rustAtlaspack.end();
230
+ });
231
+ }
227
232
  }
228
233
  this.rustAtlaspack = rustAtlaspack;
229
- if (featureFlags.atlaspackV3CleanShutdown) {
230
- this.#disposable.add(() => {
231
- rustAtlaspack.end();
232
- });
233
- }
234
234
  let {
235
235
  config
236
236
  } = await (0, _AtlaspackConfigRequest.loadAtlaspackConfig)(resolvedOptions);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/core",
3
- "version": "2.16.2-canary.111+0341e1e85",
3
+ "version": "2.16.2-canary.112+3ba1aee6a",
4
4
  "license": "(MIT OR Apache-2.0)",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -21,21 +21,21 @@
21
21
  "check-ts": "tsc --noEmit index.d.ts"
22
22
  },
23
23
  "dependencies": {
24
- "@atlaspack/build-cache": "2.13.3-canary.179+0341e1e85",
25
- "@atlaspack/cache": "3.1.1-canary.111+0341e1e85",
26
- "@atlaspack/diagnostic": "2.14.1-canary.179+0341e1e85",
27
- "@atlaspack/events": "2.14.1-canary.179+0341e1e85",
28
- "@atlaspack/feature-flags": "2.14.1-canary.179+0341e1e85",
29
- "@atlaspack/fs": "2.14.5-canary.111+0341e1e85",
30
- "@atlaspack/graph": "3.4.1-canary.179+0341e1e85",
31
- "@atlaspack/logger": "2.14.5-canary.111+0341e1e85",
32
- "@atlaspack/package-manager": "2.14.5-canary.111+0341e1e85",
33
- "@atlaspack/plugin": "2.14.5-canary.111+0341e1e85",
34
- "@atlaspack/profiler": "2.14.1-canary.179+0341e1e85",
35
- "@atlaspack/rust": "3.2.1-canary.111+0341e1e85",
36
- "@atlaspack/types": "2.14.5-canary.111+0341e1e85",
37
- "@atlaspack/utils": "2.14.5-canary.111+0341e1e85",
38
- "@atlaspack/workers": "2.14.5-canary.111+0341e1e85",
24
+ "@atlaspack/build-cache": "2.13.3-canary.180+3ba1aee6a",
25
+ "@atlaspack/cache": "3.1.1-canary.112+3ba1aee6a",
26
+ "@atlaspack/diagnostic": "2.14.1-canary.180+3ba1aee6a",
27
+ "@atlaspack/events": "2.14.1-canary.180+3ba1aee6a",
28
+ "@atlaspack/feature-flags": "2.14.1-canary.180+3ba1aee6a",
29
+ "@atlaspack/fs": "2.14.5-canary.112+3ba1aee6a",
30
+ "@atlaspack/graph": "3.4.1-canary.180+3ba1aee6a",
31
+ "@atlaspack/logger": "2.14.5-canary.112+3ba1aee6a",
32
+ "@atlaspack/package-manager": "2.14.5-canary.112+3ba1aee6a",
33
+ "@atlaspack/plugin": "2.14.5-canary.112+3ba1aee6a",
34
+ "@atlaspack/profiler": "2.14.1-canary.180+3ba1aee6a",
35
+ "@atlaspack/rust": "3.2.1-canary.112+3ba1aee6a",
36
+ "@atlaspack/types": "2.14.5-canary.112+3ba1aee6a",
37
+ "@atlaspack/utils": "2.14.5-canary.112+3ba1aee6a",
38
+ "@atlaspack/workers": "2.14.5-canary.112+3ba1aee6a",
39
39
  "@mischnic/json-sourcemap": "^0.1.0",
40
40
  "@parcel/source-map": "^2.1.1",
41
41
  "base-x": "^3.0.8",
@@ -60,5 +60,5 @@
60
60
  "./src/serializerCore.js": "./src/serializerCore.browser.js"
61
61
  },
62
62
  "type": "commonjs",
63
- "gitHead": "0341e1e85291dd308e0a52172e7baa9f686f36d2"
63
+ "gitHead": "3ba1aee6a794a26b2f0255aaf6d003981532d0ae"
64
64
  }
package/src/Atlaspack.js CHANGED
@@ -187,15 +187,14 @@ export default class Atlaspack {
187
187
  defaultTargetOptions: resolvedOptions.defaultTargetOptions,
188
188
  lmdb,
189
189
  });
190
+ if (featureFlags.atlaspackV3CleanShutdown) {
191
+ this.#disposable.add(() => {
192
+ rustAtlaspack.end();
193
+ });
194
+ }
190
195
  }
191
196
  this.rustAtlaspack = rustAtlaspack;
192
197
 
193
- if (featureFlags.atlaspackV3CleanShutdown) {
194
- this.#disposable.add(() => {
195
- rustAtlaspack.end();
196
- });
197
- }
198
-
199
198
  let {config} = await loadAtlaspackConfig(resolvedOptions);
200
199
  this.#config = new AtlaspackConfig(config, resolvedOptions);
201
200