@shibanet0/datamitsu-config 0.0.1-alpha-17 → 0.0.1-alpha-18
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/datamitsu.js +1 -1
- package/dist/s0/index.js +8 -0
- package/package.json +1 -1
package/datamitsu.js
CHANGED
|
@@ -1958,7 +1958,7 @@ var mapOfApps = {
|
|
|
1958
1958
|
|
|
1959
1959
|
// package.json
|
|
1960
1960
|
var name = "@shibanet0/datamitsu-config";
|
|
1961
|
-
var version = "0.0.1-alpha-
|
|
1961
|
+
var version = "0.0.1-alpha-18";
|
|
1962
1962
|
var dependencies = {
|
|
1963
1963
|
"@antebudimir/eslint-plugin-vanilla-extract": "1.16.0",
|
|
1964
1964
|
"@commander-js/extra-typings": "14.0.0",
|
package/dist/s0/index.js
CHANGED
|
@@ -385,6 +385,14 @@ var getEditorJS = async (buf) => {
|
|
|
385
385
|
state.checkpoint.latest.resources.sort((a, b) => {
|
|
386
386
|
const urnA = a?.urn || "";
|
|
387
387
|
const urnB = b?.urn || "";
|
|
388
|
+
const aIsStack = urnA.includes("::pulumi:pulumi:Stack::");
|
|
389
|
+
const bIsStack = urnB.includes("::pulumi:pulumi:Stack::");
|
|
390
|
+
if (aIsStack && !bIsStack) {
|
|
391
|
+
return -1;
|
|
392
|
+
}
|
|
393
|
+
if (!aIsStack && bIsStack) {
|
|
394
|
+
return 1;
|
|
395
|
+
}
|
|
388
396
|
const aIsProvider = urnA.includes("::pulumi:providers:");
|
|
389
397
|
const bIsProvider = urnB.includes("::pulumi:providers:");
|
|
390
398
|
if (aIsProvider && !bIsProvider) {
|