@shibanet0/datamitsu-config 0.0.1-alpha-16 → 0.0.1-alpha-17
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 +2 -2
- package/dist/s0/index.js +8 -0
- package/package.json +2 -2
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-17";
|
|
1962
1962
|
var dependencies = {
|
|
1963
1963
|
"@antebudimir/eslint-plugin-vanilla-extract": "1.16.0",
|
|
1964
1964
|
"@commander-js/extra-typings": "14.0.0",
|
|
@@ -1967,7 +1967,7 @@ var dependencies = {
|
|
|
1967
1967
|
"@commitlint/format": "20.2.0",
|
|
1968
1968
|
"@commitlint/types": "20.2.0",
|
|
1969
1969
|
"@cspell/eslint-plugin": "9.4.0",
|
|
1970
|
-
"@datamitsu/datamitsu": "0.0.1-alpha-
|
|
1970
|
+
"@datamitsu/datamitsu": "0.0.1-alpha-44",
|
|
1971
1971
|
"@eslint/config-helpers": "0.5.0",
|
|
1972
1972
|
"@eslint/js": "9.39.2",
|
|
1973
1973
|
"@prettier/plugin-xml": "3.4.2",
|
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 aIsProvider = urnA.includes("::pulumi:providers:");
|
|
389
|
+
const bIsProvider = urnB.includes("::pulumi:providers:");
|
|
390
|
+
if (aIsProvider && !bIsProvider) {
|
|
391
|
+
return -1;
|
|
392
|
+
}
|
|
393
|
+
if (!aIsProvider && bIsProvider) {
|
|
394
|
+
return 1;
|
|
395
|
+
}
|
|
388
396
|
return urnA.localeCompare(urnB);
|
|
389
397
|
});
|
|
390
398
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shibanet0/datamitsu-config",
|
|
3
|
-
"version": "0.0.1-alpha-
|
|
3
|
+
"version": "0.0.1-alpha-17",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "MIT",
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"@commitlint/format": "20.2.0",
|
|
72
72
|
"@commitlint/types": "20.2.0",
|
|
73
73
|
"@cspell/eslint-plugin": "9.4.0",
|
|
74
|
-
"@datamitsu/datamitsu": "0.0.1-alpha-
|
|
74
|
+
"@datamitsu/datamitsu": "0.0.1-alpha-44",
|
|
75
75
|
"@eslint/config-helpers": "0.5.0",
|
|
76
76
|
"@eslint/js": "9.39.2",
|
|
77
77
|
"@prettier/plugin-xml": "3.4.2",
|