@atlaspack/core 2.16.2-canary.54 → 2.16.2-canary.55
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.
|
@@ -76,6 +76,7 @@ async function run({
|
|
|
76
76
|
let name = (0, _nullthrows().default)(bundle.name, `Expected ${bundle.type} bundle to have a name`).replace(bundle.hashReference, hash);
|
|
77
77
|
res.set(bundle.id, {
|
|
78
78
|
filePath: (0, _projectPath.joinProjectPath)(bundle.target.distDir, name),
|
|
79
|
+
bundleId: bundle.id,
|
|
79
80
|
type: bundle.type,
|
|
80
81
|
// FIXME: this is wrong if the packager changes the type...
|
|
81
82
|
stats: {
|
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.55+51aba5fc0",
|
|
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.
|
|
25
|
-
"@atlaspack/cache": "3.1.1-canary.
|
|
26
|
-
"@atlaspack/diagnostic": "2.14.1-canary.
|
|
27
|
-
"@atlaspack/events": "2.14.1-canary.
|
|
28
|
-
"@atlaspack/feature-flags": "2.14.1-canary.
|
|
29
|
-
"@atlaspack/fs": "2.14.5-canary.
|
|
30
|
-
"@atlaspack/graph": "3.4.1-canary.
|
|
31
|
-
"@atlaspack/logger": "2.14.5-canary.
|
|
32
|
-
"@atlaspack/package-manager": "2.14.5-canary.
|
|
33
|
-
"@atlaspack/plugin": "2.14.5-canary.
|
|
34
|
-
"@atlaspack/profiler": "2.14.1-canary.
|
|
35
|
-
"@atlaspack/rust": "3.2.1-canary.
|
|
36
|
-
"@atlaspack/types": "2.14.5-canary.
|
|
37
|
-
"@atlaspack/utils": "2.14.5-canary.
|
|
38
|
-
"@atlaspack/workers": "2.14.5-canary.
|
|
24
|
+
"@atlaspack/build-cache": "2.13.3-canary.123+51aba5fc0",
|
|
25
|
+
"@atlaspack/cache": "3.1.1-canary.55+51aba5fc0",
|
|
26
|
+
"@atlaspack/diagnostic": "2.14.1-canary.123+51aba5fc0",
|
|
27
|
+
"@atlaspack/events": "2.14.1-canary.123+51aba5fc0",
|
|
28
|
+
"@atlaspack/feature-flags": "2.14.1-canary.123+51aba5fc0",
|
|
29
|
+
"@atlaspack/fs": "2.14.5-canary.55+51aba5fc0",
|
|
30
|
+
"@atlaspack/graph": "3.4.1-canary.123+51aba5fc0",
|
|
31
|
+
"@atlaspack/logger": "2.14.5-canary.55+51aba5fc0",
|
|
32
|
+
"@atlaspack/package-manager": "2.14.5-canary.55+51aba5fc0",
|
|
33
|
+
"@atlaspack/plugin": "2.14.5-canary.55+51aba5fc0",
|
|
34
|
+
"@atlaspack/profiler": "2.14.1-canary.123+51aba5fc0",
|
|
35
|
+
"@atlaspack/rust": "3.2.1-canary.55+51aba5fc0",
|
|
36
|
+
"@atlaspack/types": "2.14.5-canary.55+51aba5fc0",
|
|
37
|
+
"@atlaspack/utils": "2.14.5-canary.55+51aba5fc0",
|
|
38
|
+
"@atlaspack/workers": "2.14.5-canary.55+51aba5fc0",
|
|
39
39
|
"@mischnic/json-sourcemap": "^0.1.0",
|
|
40
40
|
"@parcel/source-map": "^2.1.1",
|
|
41
41
|
"base-x": "^3.0.8",
|
|
@@ -71,5 +71,5 @@
|
|
|
71
71
|
"./src/serializerCore.js": "./src/serializerCore.browser.js"
|
|
72
72
|
},
|
|
73
73
|
"type": "commonjs",
|
|
74
|
-
"gitHead": "
|
|
74
|
+
"gitHead": "51aba5fc0e49235ee06bbc3c376f48c3e7da5c4b"
|
|
75
75
|
}
|
|
@@ -84,6 +84,7 @@ async function run({input, api, farm, options}) {
|
|
|
84
84
|
).replace(bundle.hashReference, hash);
|
|
85
85
|
res.set(bundle.id, {
|
|
86
86
|
filePath: joinProjectPath(bundle.target.distDir, name),
|
|
87
|
+
bundleId: bundle.id,
|
|
87
88
|
type: bundle.type, // FIXME: this is wrong if the packager changes the type...
|
|
88
89
|
stats: {
|
|
89
90
|
time: 0,
|