@arcgis/lumina-compiler 4.33.0-next.125 → 4.33.0-next.126
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/dist/index.js +12 -4
- package/package.json +5 -5
package/dist/index.js
CHANGED
|
@@ -5817,18 +5817,26 @@ const ue = {
|
|
|
5817
5817
|
stencilLikeDocsJson: "docs/docs.json"
|
|
5818
5818
|
};
|
|
5819
5819
|
async function ls(e, t, i, n, s = J()) {
|
|
5820
|
-
const r = bl(e, i, n, s), a = u.join(t, "lumina.ts");
|
|
5821
|
-
if (
|
|
5820
|
+
const r = bl(e, i, n, s), a = u.join(t, "lumina.ts"), l = await U(a) ? await O(a, "utf8") : "";
|
|
5821
|
+
if (l === r)
|
|
5822
5822
|
return !1;
|
|
5823
|
-
if (process.env.CI)
|
|
5823
|
+
if (process.env.CI) {
|
|
5824
|
+
const d = (p) => Array.from(p, (m) => m.codePointAt(0).toString(16).padStart(4, "0")).join(",");
|
|
5824
5825
|
throw Error(
|
|
5825
5826
|
b(
|
|
5826
5827
|
"@arcgis/lumina:updateLuminaTs",
|
|
5827
5828
|
`lumina.ts is out of date. Start the vite dev server or build locally at least once to update lumina.ts and commit the updated file. Tried to write the following content:
|
|
5828
5829
|
|
|
5829
|
-
${r}
|
|
5830
|
+
${r}
|
|
5831
|
+
|
|
5832
|
+
Current content:
|
|
5833
|
+
|
|
5834
|
+
${l}
|
|
5835
|
+
Hex new content: ${d(r)}
|
|
5836
|
+
Hex current content: ${d(l)}`
|
|
5830
5837
|
)
|
|
5831
5838
|
);
|
|
5839
|
+
}
|
|
5832
5840
|
return zi(a, r), !0;
|
|
5833
5841
|
}
|
|
5834
5842
|
function bl(e, t, i, n = J()) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcgis/lumina-compiler",
|
|
3
|
-
"version": "4.33.0-next.
|
|
3
|
+
"version": "4.33.0-next.126",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
],
|
|
19
19
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@arcgis/api-extractor": "4.33.0-next.
|
|
22
|
-
"@arcgis/components-build-utils": "4.33.0-next.
|
|
23
|
-
"@arcgis/components-utils": "4.33.0-next.
|
|
21
|
+
"@arcgis/api-extractor": "4.33.0-next.126",
|
|
22
|
+
"@arcgis/components-build-utils": "4.33.0-next.126",
|
|
23
|
+
"@arcgis/components-utils": "4.33.0-next.126",
|
|
24
24
|
"chalk": "^5.3.0",
|
|
25
25
|
"esbuild": "^0.25.4",
|
|
26
26
|
"glob": "^11.0.0",
|
|
@@ -37,6 +37,6 @@
|
|
|
37
37
|
"vitest-fail-on-console": "^0.7.1"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
|
-
"@arcgis/lumina": "~4.33.0-next.
|
|
40
|
+
"@arcgis/lumina": "~4.33.0-next.126"
|
|
41
41
|
}
|
|
42
42
|
}
|