@atlaspack/core 2.16.2-canary.142 → 2.16.2-canary.144
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/CHANGELOG.md +29 -0
- package/lib/Atlaspack.js +3 -5
- package/package.json +18 -18
- package/src/Atlaspack.ts +3 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# @atlaspack/core
|
|
2
2
|
|
|
3
|
+
## 2.21.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#723](https://github.com/atlassian-labs/atlaspack/pull/723) [`43fdd22`](https://github.com/atlassian-labs/atlaspack/commit/43fdd223860fbc97af17d68c65419b97412cb888) Thanks [@vykimnguyen](https://github.com/vykimnguyen)! - adding projectRoot option
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- [#720](https://github.com/atlassian-labs/atlaspack/pull/720) [`d2fd849`](https://github.com/atlassian-labs/atlaspack/commit/d2fd849770fe6305e9c694bd97b1bd905abd9d94) Thanks [@alshdavid](https://github.com/alshdavid)! - Migrate to TypeScript
|
|
12
|
+
|
|
13
|
+
- [#725](https://github.com/atlassian-labs/atlaspack/pull/725) [`12bee0e`](https://github.com/atlassian-labs/atlaspack/commit/12bee0e23f0464d7f6bd3e24fbe0d19c126d587d) Thanks [@marcins](https://github.com/marcins)! - Clean up `atlaspackV3CleanShutdown` feature flag.
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [[`d2fd849`](https://github.com/atlassian-labs/atlaspack/commit/d2fd849770fe6305e9c694bd97b1bd905abd9d94), [`12bee0e`](https://github.com/atlassian-labs/atlaspack/commit/12bee0e23f0464d7f6bd3e24fbe0d19c126d587d)]:
|
|
16
|
+
- @atlaspack/package-manager@2.14.22
|
|
17
|
+
- @atlaspack/feature-flags@2.20.1
|
|
18
|
+
- @atlaspack/build-cache@2.13.4
|
|
19
|
+
- @atlaspack/diagnostic@2.14.2
|
|
20
|
+
- @atlaspack/profiler@2.14.19
|
|
21
|
+
- @atlaspack/workers@2.14.22
|
|
22
|
+
- @atlaspack/events@2.14.2
|
|
23
|
+
- @atlaspack/logger@2.14.14
|
|
24
|
+
- @atlaspack/plugin@2.14.22
|
|
25
|
+
- @atlaspack/cache@3.2.17
|
|
26
|
+
- @atlaspack/graph@3.5.11
|
|
27
|
+
- @atlaspack/types@2.15.12
|
|
28
|
+
- @atlaspack/utils@2.17.4
|
|
29
|
+
- @atlaspack/rust@3.4.2
|
|
30
|
+
- @atlaspack/fs@2.15.17
|
|
31
|
+
|
|
3
32
|
## 2.20.0
|
|
4
33
|
|
|
5
34
|
### Minor Changes
|
package/lib/Atlaspack.js
CHANGED
|
@@ -228,11 +228,9 @@ class Atlaspack {
|
|
|
228
228
|
defaultTargetOptions: resolvedOptions.defaultTargetOptions,
|
|
229
229
|
lmdb
|
|
230
230
|
});
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
});
|
|
235
|
-
}
|
|
231
|
+
this.#disposable.add(() => {
|
|
232
|
+
rustAtlaspack.end();
|
|
233
|
+
});
|
|
236
234
|
}
|
|
237
235
|
// @ts-expect-error TS2454
|
|
238
236
|
this.rustAtlaspack = rustAtlaspack;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaspack/core",
|
|
3
|
-
"version": "2.16.2-canary.
|
|
3
|
+
"version": "2.16.2-canary.144+a4bfbbfe7",
|
|
4
4
|
"license": "(MIT OR Apache-2.0)",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -22,21 +22,21 @@
|
|
|
22
22
|
"check-ts": "tsc --emitDeclarationOnly --rootDir src"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@atlaspack/build-cache": "2.13.3-canary.
|
|
26
|
-
"@atlaspack/cache": "3.1.1-canary.
|
|
27
|
-
"@atlaspack/diagnostic": "2.14.1-canary.
|
|
28
|
-
"@atlaspack/events": "2.14.1-canary.
|
|
29
|
-
"@atlaspack/feature-flags": "2.14.1-canary.
|
|
30
|
-
"@atlaspack/fs": "2.14.5-canary.
|
|
31
|
-
"@atlaspack/graph": "3.4.1-canary.
|
|
32
|
-
"@atlaspack/logger": "2.14.5-canary.
|
|
33
|
-
"@atlaspack/package-manager": "2.14.5-canary.
|
|
34
|
-
"@atlaspack/plugin": "2.14.5-canary.
|
|
35
|
-
"@atlaspack/profiler": "2.14.1-canary.
|
|
36
|
-
"@atlaspack/rust": "3.2.1-canary.
|
|
37
|
-
"@atlaspack/types": "2.14.5-canary.
|
|
38
|
-
"@atlaspack/utils": "2.14.5-canary.
|
|
39
|
-
"@atlaspack/workers": "2.14.5-canary.
|
|
25
|
+
"@atlaspack/build-cache": "2.13.3-canary.212+a4bfbbfe7",
|
|
26
|
+
"@atlaspack/cache": "3.1.1-canary.144+a4bfbbfe7",
|
|
27
|
+
"@atlaspack/diagnostic": "2.14.1-canary.212+a4bfbbfe7",
|
|
28
|
+
"@atlaspack/events": "2.14.1-canary.212+a4bfbbfe7",
|
|
29
|
+
"@atlaspack/feature-flags": "2.14.1-canary.212+a4bfbbfe7",
|
|
30
|
+
"@atlaspack/fs": "2.14.5-canary.144+a4bfbbfe7",
|
|
31
|
+
"@atlaspack/graph": "3.4.1-canary.212+a4bfbbfe7",
|
|
32
|
+
"@atlaspack/logger": "2.14.5-canary.144+a4bfbbfe7",
|
|
33
|
+
"@atlaspack/package-manager": "2.14.5-canary.144+a4bfbbfe7",
|
|
34
|
+
"@atlaspack/plugin": "2.14.5-canary.144+a4bfbbfe7",
|
|
35
|
+
"@atlaspack/profiler": "2.14.1-canary.212+a4bfbbfe7",
|
|
36
|
+
"@atlaspack/rust": "3.2.1-canary.144+a4bfbbfe7",
|
|
37
|
+
"@atlaspack/types": "2.14.5-canary.144+a4bfbbfe7",
|
|
38
|
+
"@atlaspack/utils": "2.14.5-canary.144+a4bfbbfe7",
|
|
39
|
+
"@atlaspack/workers": "2.14.5-canary.144+a4bfbbfe7",
|
|
40
40
|
"@mischnic/json-sourcemap": "^0.1.0",
|
|
41
41
|
"@parcel/source-map": "^2.1.1",
|
|
42
42
|
"base-x": "^3.0.8",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"semver": "^7.5.2"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@atlaspack/babel-register": "2.14.
|
|
53
|
+
"@atlaspack/babel-register": "2.14.2",
|
|
54
54
|
"@types/node": ">= 18",
|
|
55
55
|
"graphviz": "^0.0.9",
|
|
56
56
|
"jest-diff": "*",
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"./src/serializerCore.js": "./src/serializerCore.browser.js"
|
|
62
62
|
},
|
|
63
63
|
"type": "commonjs",
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "a4bfbbfe7f61b25bedc62b3532bca7b5bea9da52"
|
|
65
65
|
}
|
package/src/Atlaspack.ts
CHANGED
|
@@ -200,11 +200,9 @@ export default class Atlaspack {
|
|
|
200
200
|
defaultTargetOptions: resolvedOptions.defaultTargetOptions,
|
|
201
201
|
lmdb,
|
|
202
202
|
});
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
});
|
|
207
|
-
}
|
|
203
|
+
this.#disposable.add(() => {
|
|
204
|
+
rustAtlaspack.end();
|
|
205
|
+
});
|
|
208
206
|
}
|
|
209
207
|
// @ts-expect-error TS2454
|
|
210
208
|
this.rustAtlaspack = rustAtlaspack;
|