@storm-software/pulumi-tools 0.1.0 → 0.5.1
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 +47 -0
- package/executors/config/executor.js +10 -0
- package/executors/import/executor.js +10 -0
- package/executors/preview/executor.js +10 -0
- package/executors/refresh/executor.js +10 -0
- package/executors/up/executor.js +10 -0
- package/index.js +13 -3
- package/meta.json +25 -25
- package/package.json +1 -81
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,50 @@
|
|
|
1
|
+
## 0.5.1 (2025-01-09)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- **workspace-tools:** Added additional troubleshooting logging to the package
|
|
6
|
+
([c2cbdcc5](https://github.com/storm-software/storm-ops/commit/c2cbdcc5))
|
|
7
|
+
|
|
8
|
+
## 0.5.0 (2025-01-08)
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
- **build-tools:** Enhanced build options resolving to allow plugin list
|
|
13
|
+
overrides
|
|
14
|
+
([94aa9ac4](https://github.com/storm-software/storm-ops/commit/94aa9ac4))
|
|
15
|
+
|
|
16
|
+
## 0.4.0 (2025-01-02)
|
|
17
|
+
|
|
18
|
+
### Features
|
|
19
|
+
|
|
20
|
+
- **storm-ops:** Updated catalog and JSON schema for `StormConfig` object
|
|
21
|
+
([bf99f680](https://github.com/storm-software/storm-ops/commit/bf99f680))
|
|
22
|
+
|
|
23
|
+
## 0.3.0 (2025-01-02)
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
- **config:** Regenerate the `storm.schema.json` file
|
|
28
|
+
([258c3213](https://github.com/storm-software/storm-ops/commit/258c3213))
|
|
29
|
+
|
|
30
|
+
### Dependency Upgrades
|
|
31
|
+
|
|
32
|
+
- **storm-ops:** Added `tslib` to the pnpm catalog
|
|
33
|
+
([7cd24949](https://github.com/storm-software/storm-ops/commit/7cd24949))
|
|
34
|
+
|
|
35
|
+
## 0.2.0 (2024-12-30)
|
|
36
|
+
|
|
37
|
+
### Features
|
|
38
|
+
|
|
39
|
+
- **storm-ops:** Completed enhancement around `catalog` and `workspace`
|
|
40
|
+
dependency upgrades
|
|
41
|
+
([5dd13247](https://github.com/storm-software/storm-ops/commit/5dd13247))
|
|
42
|
+
|
|
43
|
+
### Dependency Upgrades
|
|
44
|
+
|
|
45
|
+
- **storm-ops:** Added consistent `@types/node` versions across repository
|
|
46
|
+
([a569536d](https://github.com/storm-software/storm-ops/commit/a569536d))
|
|
47
|
+
|
|
1
48
|
## 0.1.0 (2024-12-23)
|
|
2
49
|
|
|
3
50
|
### Features
|
|
@@ -757,6 +757,7 @@ var require_minimatch = __commonJS({
|
|
|
757
757
|
continue;
|
|
758
758
|
}
|
|
759
759
|
switch (c) {
|
|
760
|
+
/* istanbul ignore next */
|
|
760
761
|
case "/": {
|
|
761
762
|
return false;
|
|
762
763
|
}
|
|
@@ -764,6 +765,8 @@ var require_minimatch = __commonJS({
|
|
|
764
765
|
clearStateChar();
|
|
765
766
|
escaping = true;
|
|
766
767
|
continue;
|
|
768
|
+
// the various stateChar values
|
|
769
|
+
// for the "extglob" stuff.
|
|
767
770
|
case "?":
|
|
768
771
|
case "*":
|
|
769
772
|
case "+":
|
|
@@ -824,6 +827,7 @@ var require_minimatch = __commonJS({
|
|
|
824
827
|
clearStateChar();
|
|
825
828
|
re += "|";
|
|
826
829
|
continue;
|
|
830
|
+
// these are mostly the same in regexp and glob
|
|
827
831
|
case "[":
|
|
828
832
|
clearStateChar();
|
|
829
833
|
if (inClass) {
|
|
@@ -1415,6 +1419,7 @@ var require_sync = __commonJS({
|
|
|
1415
1419
|
}
|
|
1416
1420
|
var prefix;
|
|
1417
1421
|
switch (n) {
|
|
1422
|
+
// if not, then this is rather simple
|
|
1418
1423
|
case pattern.length:
|
|
1419
1424
|
this._processSimple(pattern.join("/"), index);
|
|
1420
1425
|
return;
|
|
@@ -1576,6 +1581,7 @@ var require_sync = __commonJS({
|
|
|
1576
1581
|
GlobSync.prototype._readdirError = function(f, er) {
|
|
1577
1582
|
switch (er.code) {
|
|
1578
1583
|
case "ENOTSUP":
|
|
1584
|
+
// https://github.com/isaacs/node-glob/issues/205
|
|
1579
1585
|
case "ENOTDIR":
|
|
1580
1586
|
var abs = this._makeAbs(f);
|
|
1581
1587
|
this.cache[abs] = "FILE";
|
|
@@ -1587,6 +1593,7 @@ var require_sync = __commonJS({
|
|
|
1587
1593
|
}
|
|
1588
1594
|
break;
|
|
1589
1595
|
case "ENOENT":
|
|
1596
|
+
// not terribly unusual
|
|
1590
1597
|
case "ELOOP":
|
|
1591
1598
|
case "ENAMETOOLONG":
|
|
1592
1599
|
case "UNKNOWN":
|
|
@@ -2034,6 +2041,7 @@ var require_glob = __commonJS({
|
|
|
2034
2041
|
}
|
|
2035
2042
|
var prefix;
|
|
2036
2043
|
switch (n) {
|
|
2044
|
+
// if not, then this is rather simple
|
|
2037
2045
|
case pattern.length:
|
|
2038
2046
|
this._processSimple(pattern.join("/"), index, cb);
|
|
2039
2047
|
return;
|
|
@@ -2223,6 +2231,7 @@ var require_glob = __commonJS({
|
|
|
2223
2231
|
return;
|
|
2224
2232
|
switch (er.code) {
|
|
2225
2233
|
case "ENOTSUP":
|
|
2234
|
+
// https://github.com/isaacs/node-glob/issues/205
|
|
2226
2235
|
case "ENOTDIR":
|
|
2227
2236
|
var abs = this._makeAbs(f);
|
|
2228
2237
|
this.cache[abs] = "FILE";
|
|
@@ -2235,6 +2244,7 @@ var require_glob = __commonJS({
|
|
|
2235
2244
|
}
|
|
2236
2245
|
break;
|
|
2237
2246
|
case "ENOENT":
|
|
2247
|
+
// not terribly unusual
|
|
2238
2248
|
case "ELOOP":
|
|
2239
2249
|
case "ENAMETOOLONG":
|
|
2240
2250
|
case "UNKNOWN":
|
|
@@ -757,6 +757,7 @@ var require_minimatch = __commonJS({
|
|
|
757
757
|
continue;
|
|
758
758
|
}
|
|
759
759
|
switch (c) {
|
|
760
|
+
/* istanbul ignore next */
|
|
760
761
|
case "/": {
|
|
761
762
|
return false;
|
|
762
763
|
}
|
|
@@ -764,6 +765,8 @@ var require_minimatch = __commonJS({
|
|
|
764
765
|
clearStateChar();
|
|
765
766
|
escaping = true;
|
|
766
767
|
continue;
|
|
768
|
+
// the various stateChar values
|
|
769
|
+
// for the "extglob" stuff.
|
|
767
770
|
case "?":
|
|
768
771
|
case "*":
|
|
769
772
|
case "+":
|
|
@@ -824,6 +827,7 @@ var require_minimatch = __commonJS({
|
|
|
824
827
|
clearStateChar();
|
|
825
828
|
re += "|";
|
|
826
829
|
continue;
|
|
830
|
+
// these are mostly the same in regexp and glob
|
|
827
831
|
case "[":
|
|
828
832
|
clearStateChar();
|
|
829
833
|
if (inClass) {
|
|
@@ -1415,6 +1419,7 @@ var require_sync = __commonJS({
|
|
|
1415
1419
|
}
|
|
1416
1420
|
var prefix;
|
|
1417
1421
|
switch (n) {
|
|
1422
|
+
// if not, then this is rather simple
|
|
1418
1423
|
case pattern.length:
|
|
1419
1424
|
this._processSimple(pattern.join("/"), index);
|
|
1420
1425
|
return;
|
|
@@ -1576,6 +1581,7 @@ var require_sync = __commonJS({
|
|
|
1576
1581
|
GlobSync.prototype._readdirError = function(f, er) {
|
|
1577
1582
|
switch (er.code) {
|
|
1578
1583
|
case "ENOTSUP":
|
|
1584
|
+
// https://github.com/isaacs/node-glob/issues/205
|
|
1579
1585
|
case "ENOTDIR":
|
|
1580
1586
|
var abs = this._makeAbs(f);
|
|
1581
1587
|
this.cache[abs] = "FILE";
|
|
@@ -1587,6 +1593,7 @@ var require_sync = __commonJS({
|
|
|
1587
1593
|
}
|
|
1588
1594
|
break;
|
|
1589
1595
|
case "ENOENT":
|
|
1596
|
+
// not terribly unusual
|
|
1590
1597
|
case "ELOOP":
|
|
1591
1598
|
case "ENAMETOOLONG":
|
|
1592
1599
|
case "UNKNOWN":
|
|
@@ -2034,6 +2041,7 @@ var require_glob = __commonJS({
|
|
|
2034
2041
|
}
|
|
2035
2042
|
var prefix;
|
|
2036
2043
|
switch (n) {
|
|
2044
|
+
// if not, then this is rather simple
|
|
2037
2045
|
case pattern.length:
|
|
2038
2046
|
this._processSimple(pattern.join("/"), index, cb);
|
|
2039
2047
|
return;
|
|
@@ -2223,6 +2231,7 @@ var require_glob = __commonJS({
|
|
|
2223
2231
|
return;
|
|
2224
2232
|
switch (er.code) {
|
|
2225
2233
|
case "ENOTSUP":
|
|
2234
|
+
// https://github.com/isaacs/node-glob/issues/205
|
|
2226
2235
|
case "ENOTDIR":
|
|
2227
2236
|
var abs = this._makeAbs(f);
|
|
2228
2237
|
this.cache[abs] = "FILE";
|
|
@@ -2235,6 +2244,7 @@ var require_glob = __commonJS({
|
|
|
2235
2244
|
}
|
|
2236
2245
|
break;
|
|
2237
2246
|
case "ENOENT":
|
|
2247
|
+
// not terribly unusual
|
|
2238
2248
|
case "ELOOP":
|
|
2239
2249
|
case "ENAMETOOLONG":
|
|
2240
2250
|
case "UNKNOWN":
|
|
@@ -757,6 +757,7 @@ var require_minimatch = __commonJS({
|
|
|
757
757
|
continue;
|
|
758
758
|
}
|
|
759
759
|
switch (c) {
|
|
760
|
+
/* istanbul ignore next */
|
|
760
761
|
case "/": {
|
|
761
762
|
return false;
|
|
762
763
|
}
|
|
@@ -764,6 +765,8 @@ var require_minimatch = __commonJS({
|
|
|
764
765
|
clearStateChar();
|
|
765
766
|
escaping = true;
|
|
766
767
|
continue;
|
|
768
|
+
// the various stateChar values
|
|
769
|
+
// for the "extglob" stuff.
|
|
767
770
|
case "?":
|
|
768
771
|
case "*":
|
|
769
772
|
case "+":
|
|
@@ -824,6 +827,7 @@ var require_minimatch = __commonJS({
|
|
|
824
827
|
clearStateChar();
|
|
825
828
|
re += "|";
|
|
826
829
|
continue;
|
|
830
|
+
// these are mostly the same in regexp and glob
|
|
827
831
|
case "[":
|
|
828
832
|
clearStateChar();
|
|
829
833
|
if (inClass) {
|
|
@@ -1415,6 +1419,7 @@ var require_sync = __commonJS({
|
|
|
1415
1419
|
}
|
|
1416
1420
|
var prefix;
|
|
1417
1421
|
switch (n) {
|
|
1422
|
+
// if not, then this is rather simple
|
|
1418
1423
|
case pattern.length:
|
|
1419
1424
|
this._processSimple(pattern.join("/"), index);
|
|
1420
1425
|
return;
|
|
@@ -1576,6 +1581,7 @@ var require_sync = __commonJS({
|
|
|
1576
1581
|
GlobSync.prototype._readdirError = function(f, er) {
|
|
1577
1582
|
switch (er.code) {
|
|
1578
1583
|
case "ENOTSUP":
|
|
1584
|
+
// https://github.com/isaacs/node-glob/issues/205
|
|
1579
1585
|
case "ENOTDIR":
|
|
1580
1586
|
var abs = this._makeAbs(f);
|
|
1581
1587
|
this.cache[abs] = "FILE";
|
|
@@ -1587,6 +1593,7 @@ var require_sync = __commonJS({
|
|
|
1587
1593
|
}
|
|
1588
1594
|
break;
|
|
1589
1595
|
case "ENOENT":
|
|
1596
|
+
// not terribly unusual
|
|
1590
1597
|
case "ELOOP":
|
|
1591
1598
|
case "ENAMETOOLONG":
|
|
1592
1599
|
case "UNKNOWN":
|
|
@@ -2034,6 +2041,7 @@ var require_glob = __commonJS({
|
|
|
2034
2041
|
}
|
|
2035
2042
|
var prefix;
|
|
2036
2043
|
switch (n) {
|
|
2044
|
+
// if not, then this is rather simple
|
|
2037
2045
|
case pattern.length:
|
|
2038
2046
|
this._processSimple(pattern.join("/"), index, cb);
|
|
2039
2047
|
return;
|
|
@@ -2223,6 +2231,7 @@ var require_glob = __commonJS({
|
|
|
2223
2231
|
return;
|
|
2224
2232
|
switch (er.code) {
|
|
2225
2233
|
case "ENOTSUP":
|
|
2234
|
+
// https://github.com/isaacs/node-glob/issues/205
|
|
2226
2235
|
case "ENOTDIR":
|
|
2227
2236
|
var abs = this._makeAbs(f);
|
|
2228
2237
|
this.cache[abs] = "FILE";
|
|
@@ -2235,6 +2244,7 @@ var require_glob = __commonJS({
|
|
|
2235
2244
|
}
|
|
2236
2245
|
break;
|
|
2237
2246
|
case "ENOENT":
|
|
2247
|
+
// not terribly unusual
|
|
2238
2248
|
case "ELOOP":
|
|
2239
2249
|
case "ENAMETOOLONG":
|
|
2240
2250
|
case "UNKNOWN":
|
|
@@ -757,6 +757,7 @@ var require_minimatch = __commonJS({
|
|
|
757
757
|
continue;
|
|
758
758
|
}
|
|
759
759
|
switch (c) {
|
|
760
|
+
/* istanbul ignore next */
|
|
760
761
|
case "/": {
|
|
761
762
|
return false;
|
|
762
763
|
}
|
|
@@ -764,6 +765,8 @@ var require_minimatch = __commonJS({
|
|
|
764
765
|
clearStateChar();
|
|
765
766
|
escaping = true;
|
|
766
767
|
continue;
|
|
768
|
+
// the various stateChar values
|
|
769
|
+
// for the "extglob" stuff.
|
|
767
770
|
case "?":
|
|
768
771
|
case "*":
|
|
769
772
|
case "+":
|
|
@@ -824,6 +827,7 @@ var require_minimatch = __commonJS({
|
|
|
824
827
|
clearStateChar();
|
|
825
828
|
re += "|";
|
|
826
829
|
continue;
|
|
830
|
+
// these are mostly the same in regexp and glob
|
|
827
831
|
case "[":
|
|
828
832
|
clearStateChar();
|
|
829
833
|
if (inClass) {
|
|
@@ -1415,6 +1419,7 @@ var require_sync = __commonJS({
|
|
|
1415
1419
|
}
|
|
1416
1420
|
var prefix;
|
|
1417
1421
|
switch (n) {
|
|
1422
|
+
// if not, then this is rather simple
|
|
1418
1423
|
case pattern.length:
|
|
1419
1424
|
this._processSimple(pattern.join("/"), index);
|
|
1420
1425
|
return;
|
|
@@ -1576,6 +1581,7 @@ var require_sync = __commonJS({
|
|
|
1576
1581
|
GlobSync.prototype._readdirError = function(f, er) {
|
|
1577
1582
|
switch (er.code) {
|
|
1578
1583
|
case "ENOTSUP":
|
|
1584
|
+
// https://github.com/isaacs/node-glob/issues/205
|
|
1579
1585
|
case "ENOTDIR":
|
|
1580
1586
|
var abs = this._makeAbs(f);
|
|
1581
1587
|
this.cache[abs] = "FILE";
|
|
@@ -1587,6 +1593,7 @@ var require_sync = __commonJS({
|
|
|
1587
1593
|
}
|
|
1588
1594
|
break;
|
|
1589
1595
|
case "ENOENT":
|
|
1596
|
+
// not terribly unusual
|
|
1590
1597
|
case "ELOOP":
|
|
1591
1598
|
case "ENAMETOOLONG":
|
|
1592
1599
|
case "UNKNOWN":
|
|
@@ -2034,6 +2041,7 @@ var require_glob = __commonJS({
|
|
|
2034
2041
|
}
|
|
2035
2042
|
var prefix;
|
|
2036
2043
|
switch (n) {
|
|
2044
|
+
// if not, then this is rather simple
|
|
2037
2045
|
case pattern.length:
|
|
2038
2046
|
this._processSimple(pattern.join("/"), index, cb);
|
|
2039
2047
|
return;
|
|
@@ -2223,6 +2231,7 @@ var require_glob = __commonJS({
|
|
|
2223
2231
|
return;
|
|
2224
2232
|
switch (er.code) {
|
|
2225
2233
|
case "ENOTSUP":
|
|
2234
|
+
// https://github.com/isaacs/node-glob/issues/205
|
|
2226
2235
|
case "ENOTDIR":
|
|
2227
2236
|
var abs = this._makeAbs(f);
|
|
2228
2237
|
this.cache[abs] = "FILE";
|
|
@@ -2235,6 +2244,7 @@ var require_glob = __commonJS({
|
|
|
2235
2244
|
}
|
|
2236
2245
|
break;
|
|
2237
2246
|
case "ENOENT":
|
|
2247
|
+
// not terribly unusual
|
|
2238
2248
|
case "ELOOP":
|
|
2239
2249
|
case "ENAMETOOLONG":
|
|
2240
2250
|
case "UNKNOWN":
|
package/executors/up/executor.js
CHANGED
|
@@ -757,6 +757,7 @@ var require_minimatch = __commonJS({
|
|
|
757
757
|
continue;
|
|
758
758
|
}
|
|
759
759
|
switch (c) {
|
|
760
|
+
/* istanbul ignore next */
|
|
760
761
|
case "/": {
|
|
761
762
|
return false;
|
|
762
763
|
}
|
|
@@ -764,6 +765,8 @@ var require_minimatch = __commonJS({
|
|
|
764
765
|
clearStateChar();
|
|
765
766
|
escaping = true;
|
|
766
767
|
continue;
|
|
768
|
+
// the various stateChar values
|
|
769
|
+
// for the "extglob" stuff.
|
|
767
770
|
case "?":
|
|
768
771
|
case "*":
|
|
769
772
|
case "+":
|
|
@@ -824,6 +827,7 @@ var require_minimatch = __commonJS({
|
|
|
824
827
|
clearStateChar();
|
|
825
828
|
re += "|";
|
|
826
829
|
continue;
|
|
830
|
+
// these are mostly the same in regexp and glob
|
|
827
831
|
case "[":
|
|
828
832
|
clearStateChar();
|
|
829
833
|
if (inClass) {
|
|
@@ -1415,6 +1419,7 @@ var require_sync = __commonJS({
|
|
|
1415
1419
|
}
|
|
1416
1420
|
var prefix;
|
|
1417
1421
|
switch (n) {
|
|
1422
|
+
// if not, then this is rather simple
|
|
1418
1423
|
case pattern.length:
|
|
1419
1424
|
this._processSimple(pattern.join("/"), index);
|
|
1420
1425
|
return;
|
|
@@ -1576,6 +1581,7 @@ var require_sync = __commonJS({
|
|
|
1576
1581
|
GlobSync.prototype._readdirError = function(f, er) {
|
|
1577
1582
|
switch (er.code) {
|
|
1578
1583
|
case "ENOTSUP":
|
|
1584
|
+
// https://github.com/isaacs/node-glob/issues/205
|
|
1579
1585
|
case "ENOTDIR":
|
|
1580
1586
|
var abs = this._makeAbs(f);
|
|
1581
1587
|
this.cache[abs] = "FILE";
|
|
@@ -1587,6 +1593,7 @@ var require_sync = __commonJS({
|
|
|
1587
1593
|
}
|
|
1588
1594
|
break;
|
|
1589
1595
|
case "ENOENT":
|
|
1596
|
+
// not terribly unusual
|
|
1590
1597
|
case "ELOOP":
|
|
1591
1598
|
case "ENAMETOOLONG":
|
|
1592
1599
|
case "UNKNOWN":
|
|
@@ -2034,6 +2041,7 @@ var require_glob = __commonJS({
|
|
|
2034
2041
|
}
|
|
2035
2042
|
var prefix;
|
|
2036
2043
|
switch (n) {
|
|
2044
|
+
// if not, then this is rather simple
|
|
2037
2045
|
case pattern.length:
|
|
2038
2046
|
this._processSimple(pattern.join("/"), index, cb);
|
|
2039
2047
|
return;
|
|
@@ -2223,6 +2231,7 @@ var require_glob = __commonJS({
|
|
|
2223
2231
|
return;
|
|
2224
2232
|
switch (er.code) {
|
|
2225
2233
|
case "ENOTSUP":
|
|
2234
|
+
// https://github.com/isaacs/node-glob/issues/205
|
|
2226
2235
|
case "ENOTDIR":
|
|
2227
2236
|
var abs = this._makeAbs(f);
|
|
2228
2237
|
this.cache[abs] = "FILE";
|
|
@@ -2235,6 +2244,7 @@ var require_glob = __commonJS({
|
|
|
2235
2244
|
}
|
|
2236
2245
|
break;
|
|
2237
2246
|
case "ENOENT":
|
|
2247
|
+
// not terribly unusual
|
|
2238
2248
|
case "ELOOP":
|
|
2239
2249
|
case "ENAMETOOLONG":
|
|
2240
2250
|
case "UNKNOWN":
|
package/index.js
CHANGED
|
@@ -757,6 +757,7 @@ var require_minimatch = __commonJS({
|
|
|
757
757
|
continue;
|
|
758
758
|
}
|
|
759
759
|
switch (c) {
|
|
760
|
+
/* istanbul ignore next */
|
|
760
761
|
case "/": {
|
|
761
762
|
return false;
|
|
762
763
|
}
|
|
@@ -764,6 +765,8 @@ var require_minimatch = __commonJS({
|
|
|
764
765
|
clearStateChar();
|
|
765
766
|
escaping = true;
|
|
766
767
|
continue;
|
|
768
|
+
// the various stateChar values
|
|
769
|
+
// for the "extglob" stuff.
|
|
767
770
|
case "?":
|
|
768
771
|
case "*":
|
|
769
772
|
case "+":
|
|
@@ -824,6 +827,7 @@ var require_minimatch = __commonJS({
|
|
|
824
827
|
clearStateChar();
|
|
825
828
|
re += "|";
|
|
826
829
|
continue;
|
|
830
|
+
// these are mostly the same in regexp and glob
|
|
827
831
|
case "[":
|
|
828
832
|
clearStateChar();
|
|
829
833
|
if (inClass) {
|
|
@@ -1415,6 +1419,7 @@ var require_sync = __commonJS({
|
|
|
1415
1419
|
}
|
|
1416
1420
|
var prefix;
|
|
1417
1421
|
switch (n) {
|
|
1422
|
+
// if not, then this is rather simple
|
|
1418
1423
|
case pattern.length:
|
|
1419
1424
|
this._processSimple(pattern.join("/"), index);
|
|
1420
1425
|
return;
|
|
@@ -1576,6 +1581,7 @@ var require_sync = __commonJS({
|
|
|
1576
1581
|
GlobSync.prototype._readdirError = function(f, er) {
|
|
1577
1582
|
switch (er.code) {
|
|
1578
1583
|
case "ENOTSUP":
|
|
1584
|
+
// https://github.com/isaacs/node-glob/issues/205
|
|
1579
1585
|
case "ENOTDIR":
|
|
1580
1586
|
var abs = this._makeAbs(f);
|
|
1581
1587
|
this.cache[abs] = "FILE";
|
|
@@ -1587,6 +1593,7 @@ var require_sync = __commonJS({
|
|
|
1587
1593
|
}
|
|
1588
1594
|
break;
|
|
1589
1595
|
case "ENOENT":
|
|
1596
|
+
// not terribly unusual
|
|
1590
1597
|
case "ELOOP":
|
|
1591
1598
|
case "ENAMETOOLONG":
|
|
1592
1599
|
case "UNKNOWN":
|
|
@@ -2034,6 +2041,7 @@ var require_glob = __commonJS({
|
|
|
2034
2041
|
}
|
|
2035
2042
|
var prefix;
|
|
2036
2043
|
switch (n) {
|
|
2044
|
+
// if not, then this is rather simple
|
|
2037
2045
|
case pattern.length:
|
|
2038
2046
|
this._processSimple(pattern.join("/"), index, cb);
|
|
2039
2047
|
return;
|
|
@@ -2223,6 +2231,7 @@ var require_glob = __commonJS({
|
|
|
2223
2231
|
return;
|
|
2224
2232
|
switch (er.code) {
|
|
2225
2233
|
case "ENOTSUP":
|
|
2234
|
+
// https://github.com/isaacs/node-glob/issues/205
|
|
2226
2235
|
case "ENOTDIR":
|
|
2227
2236
|
var abs = this._makeAbs(f);
|
|
2228
2237
|
this.cache[abs] = "FILE";
|
|
@@ -2235,6 +2244,7 @@ var require_glob = __commonJS({
|
|
|
2235
2244
|
}
|
|
2236
2245
|
break;
|
|
2237
2246
|
case "ENOENT":
|
|
2247
|
+
// not terribly unusual
|
|
2238
2248
|
case "ELOOP":
|
|
2239
2249
|
case "ENAMETOOLONG":
|
|
2240
2250
|
case "UNKNOWN":
|
|
@@ -4794,11 +4804,11 @@ var require_shell = __commonJS({
|
|
|
4794
4804
|
});
|
|
4795
4805
|
|
|
4796
4806
|
// packages/pulumi-tools/src/index.ts
|
|
4797
|
-
var
|
|
4798
|
-
__export(
|
|
4807
|
+
var index_exports = {};
|
|
4808
|
+
__export(index_exports, {
|
|
4799
4809
|
initGeneratorFn: () => initGeneratorFn
|
|
4800
4810
|
});
|
|
4801
|
-
module.exports = __toCommonJS(
|
|
4811
|
+
module.exports = __toCommonJS(index_exports);
|
|
4802
4812
|
|
|
4803
4813
|
// packages/pulumi-tools/src/base/base-executor.ts
|
|
4804
4814
|
var import_config_tools = require("@storm-software/config-tools");
|
package/meta.json
CHANGED
|
@@ -1443,7 +1443,7 @@
|
|
|
1443
1443
|
"bytesInOutput": 4549
|
|
1444
1444
|
},
|
|
1445
1445
|
"node_modules/.pnpm/minimatch@3.1.2/node_modules/minimatch/minimatch.js": {
|
|
1446
|
-
"bytesInOutput":
|
|
1446
|
+
"bytesInOutput": 18225
|
|
1447
1447
|
},
|
|
1448
1448
|
"node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits_browser.js": {
|
|
1449
1449
|
"bytesInOutput": 932
|
|
@@ -1458,7 +1458,7 @@
|
|
|
1458
1458
|
"bytesInOutput": 6400
|
|
1459
1459
|
},
|
|
1460
1460
|
"node_modules/.pnpm/glob@7.2.3/node_modules/glob/sync.js": {
|
|
1461
|
-
"bytesInOutput":
|
|
1461
|
+
"bytesInOutput": 11171
|
|
1462
1462
|
},
|
|
1463
1463
|
"node_modules/.pnpm/wrappy@1.0.2/node_modules/wrappy/wrappy.js": {
|
|
1464
1464
|
"bytesInOutput": 866
|
|
@@ -1470,7 +1470,7 @@
|
|
|
1470
1470
|
"bytesInOutput": 1183
|
|
1471
1471
|
},
|
|
1472
1472
|
"node_modules/.pnpm/glob@7.2.3/node_modules/glob/glob.js": {
|
|
1473
|
-
"bytesInOutput":
|
|
1473
|
+
"bytesInOutput": 17102
|
|
1474
1474
|
},
|
|
1475
1475
|
"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/common.js": {
|
|
1476
1476
|
"bytesInOutput": 10764
|
|
@@ -1575,7 +1575,7 @@
|
|
|
1575
1575
|
"bytesInOutput": 459
|
|
1576
1576
|
},
|
|
1577
1577
|
"packages/pulumi-tools/src/index.ts": {
|
|
1578
|
-
"bytesInOutput":
|
|
1578
|
+
"bytesInOutput": 141
|
|
1579
1579
|
},
|
|
1580
1580
|
"packages/pulumi-tools/src/base/base-executor.ts": {
|
|
1581
1581
|
"bytesInOutput": 1457
|
|
@@ -1608,7 +1608,7 @@
|
|
|
1608
1608
|
"bytesInOutput": 0
|
|
1609
1609
|
}
|
|
1610
1610
|
},
|
|
1611
|
-
"bytes":
|
|
1611
|
+
"bytes": 162184
|
|
1612
1612
|
},
|
|
1613
1613
|
"dist/packages/pulumi-tools/executors/config/executor.js": {
|
|
1614
1614
|
"imports": [
|
|
@@ -1927,7 +1927,7 @@
|
|
|
1927
1927
|
"bytesInOutput": 4549
|
|
1928
1928
|
},
|
|
1929
1929
|
"node_modules/.pnpm/minimatch@3.1.2/node_modules/minimatch/minimatch.js": {
|
|
1930
|
-
"bytesInOutput":
|
|
1930
|
+
"bytesInOutput": 18225
|
|
1931
1931
|
},
|
|
1932
1932
|
"node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits_browser.js": {
|
|
1933
1933
|
"bytesInOutput": 932
|
|
@@ -1942,7 +1942,7 @@
|
|
|
1942
1942
|
"bytesInOutput": 6400
|
|
1943
1943
|
},
|
|
1944
1944
|
"node_modules/.pnpm/glob@7.2.3/node_modules/glob/sync.js": {
|
|
1945
|
-
"bytesInOutput":
|
|
1945
|
+
"bytesInOutput": 11171
|
|
1946
1946
|
},
|
|
1947
1947
|
"node_modules/.pnpm/wrappy@1.0.2/node_modules/wrappy/wrappy.js": {
|
|
1948
1948
|
"bytesInOutput": 866
|
|
@@ -1954,7 +1954,7 @@
|
|
|
1954
1954
|
"bytesInOutput": 1183
|
|
1955
1955
|
},
|
|
1956
1956
|
"node_modules/.pnpm/glob@7.2.3/node_modules/glob/glob.js": {
|
|
1957
|
-
"bytesInOutput":
|
|
1957
|
+
"bytesInOutput": 17102
|
|
1958
1958
|
},
|
|
1959
1959
|
"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/common.js": {
|
|
1960
1960
|
"bytesInOutput": 10762
|
|
@@ -2065,7 +2065,7 @@
|
|
|
2065
2065
|
"bytesInOutput": 1457
|
|
2066
2066
|
}
|
|
2067
2067
|
},
|
|
2068
|
-
"bytes":
|
|
2068
|
+
"bytes": 156917
|
|
2069
2069
|
},
|
|
2070
2070
|
"dist/packages/pulumi-tools/executors/import/executor.js": {
|
|
2071
2071
|
"imports": [
|
|
@@ -2384,7 +2384,7 @@
|
|
|
2384
2384
|
"bytesInOutput": 4549
|
|
2385
2385
|
},
|
|
2386
2386
|
"node_modules/.pnpm/minimatch@3.1.2/node_modules/minimatch/minimatch.js": {
|
|
2387
|
-
"bytesInOutput":
|
|
2387
|
+
"bytesInOutput": 18225
|
|
2388
2388
|
},
|
|
2389
2389
|
"node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits_browser.js": {
|
|
2390
2390
|
"bytesInOutput": 932
|
|
@@ -2399,7 +2399,7 @@
|
|
|
2399
2399
|
"bytesInOutput": 6400
|
|
2400
2400
|
},
|
|
2401
2401
|
"node_modules/.pnpm/glob@7.2.3/node_modules/glob/sync.js": {
|
|
2402
|
-
"bytesInOutput":
|
|
2402
|
+
"bytesInOutput": 11171
|
|
2403
2403
|
},
|
|
2404
2404
|
"node_modules/.pnpm/wrappy@1.0.2/node_modules/wrappy/wrappy.js": {
|
|
2405
2405
|
"bytesInOutput": 866
|
|
@@ -2411,7 +2411,7 @@
|
|
|
2411
2411
|
"bytesInOutput": 1183
|
|
2412
2412
|
},
|
|
2413
2413
|
"node_modules/.pnpm/glob@7.2.3/node_modules/glob/glob.js": {
|
|
2414
|
-
"bytesInOutput":
|
|
2414
|
+
"bytesInOutput": 17102
|
|
2415
2415
|
},
|
|
2416
2416
|
"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/common.js": {
|
|
2417
2417
|
"bytesInOutput": 10762
|
|
@@ -2522,7 +2522,7 @@
|
|
|
2522
2522
|
"bytesInOutput": 1457
|
|
2523
2523
|
}
|
|
2524
2524
|
},
|
|
2525
|
-
"bytes":
|
|
2525
|
+
"bytes": 156828
|
|
2526
2526
|
},
|
|
2527
2527
|
"dist/packages/pulumi-tools/executors/preview/executor.js": {
|
|
2528
2528
|
"imports": [
|
|
@@ -2841,7 +2841,7 @@
|
|
|
2841
2841
|
"bytesInOutput": 4549
|
|
2842
2842
|
},
|
|
2843
2843
|
"node_modules/.pnpm/minimatch@3.1.2/node_modules/minimatch/minimatch.js": {
|
|
2844
|
-
"bytesInOutput":
|
|
2844
|
+
"bytesInOutput": 18225
|
|
2845
2845
|
},
|
|
2846
2846
|
"node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits_browser.js": {
|
|
2847
2847
|
"bytesInOutput": 932
|
|
@@ -2856,7 +2856,7 @@
|
|
|
2856
2856
|
"bytesInOutput": 6400
|
|
2857
2857
|
},
|
|
2858
2858
|
"node_modules/.pnpm/glob@7.2.3/node_modules/glob/sync.js": {
|
|
2859
|
-
"bytesInOutput":
|
|
2859
|
+
"bytesInOutput": 11171
|
|
2860
2860
|
},
|
|
2861
2861
|
"node_modules/.pnpm/wrappy@1.0.2/node_modules/wrappy/wrappy.js": {
|
|
2862
2862
|
"bytesInOutput": 866
|
|
@@ -2868,7 +2868,7 @@
|
|
|
2868
2868
|
"bytesInOutput": 1183
|
|
2869
2869
|
},
|
|
2870
2870
|
"node_modules/.pnpm/glob@7.2.3/node_modules/glob/glob.js": {
|
|
2871
|
-
"bytesInOutput":
|
|
2871
|
+
"bytesInOutput": 17102
|
|
2872
2872
|
},
|
|
2873
2873
|
"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/common.js": {
|
|
2874
2874
|
"bytesInOutput": 10762
|
|
@@ -2979,7 +2979,7 @@
|
|
|
2979
2979
|
"bytesInOutput": 1457
|
|
2980
2980
|
}
|
|
2981
2981
|
},
|
|
2982
|
-
"bytes":
|
|
2982
|
+
"bytes": 156776
|
|
2983
2983
|
},
|
|
2984
2984
|
"dist/packages/pulumi-tools/executors/refresh/executor.js": {
|
|
2985
2985
|
"imports": [
|
|
@@ -3298,7 +3298,7 @@
|
|
|
3298
3298
|
"bytesInOutput": 4549
|
|
3299
3299
|
},
|
|
3300
3300
|
"node_modules/.pnpm/minimatch@3.1.2/node_modules/minimatch/minimatch.js": {
|
|
3301
|
-
"bytesInOutput":
|
|
3301
|
+
"bytesInOutput": 18225
|
|
3302
3302
|
},
|
|
3303
3303
|
"node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits_browser.js": {
|
|
3304
3304
|
"bytesInOutput": 932
|
|
@@ -3313,7 +3313,7 @@
|
|
|
3313
3313
|
"bytesInOutput": 6400
|
|
3314
3314
|
},
|
|
3315
3315
|
"node_modules/.pnpm/glob@7.2.3/node_modules/glob/sync.js": {
|
|
3316
|
-
"bytesInOutput":
|
|
3316
|
+
"bytesInOutput": 11171
|
|
3317
3317
|
},
|
|
3318
3318
|
"node_modules/.pnpm/wrappy@1.0.2/node_modules/wrappy/wrappy.js": {
|
|
3319
3319
|
"bytesInOutput": 866
|
|
@@ -3325,7 +3325,7 @@
|
|
|
3325
3325
|
"bytesInOutput": 1183
|
|
3326
3326
|
},
|
|
3327
3327
|
"node_modules/.pnpm/glob@7.2.3/node_modules/glob/glob.js": {
|
|
3328
|
-
"bytesInOutput":
|
|
3328
|
+
"bytesInOutput": 17102
|
|
3329
3329
|
},
|
|
3330
3330
|
"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/common.js": {
|
|
3331
3331
|
"bytesInOutput": 10762
|
|
@@ -3436,7 +3436,7 @@
|
|
|
3436
3436
|
"bytesInOutput": 1457
|
|
3437
3437
|
}
|
|
3438
3438
|
},
|
|
3439
|
-
"bytes":
|
|
3439
|
+
"bytes": 156818
|
|
3440
3440
|
},
|
|
3441
3441
|
"dist/packages/pulumi-tools/executors/up/executor.js": {
|
|
3442
3442
|
"imports": [
|
|
@@ -3755,7 +3755,7 @@
|
|
|
3755
3755
|
"bytesInOutput": 4549
|
|
3756
3756
|
},
|
|
3757
3757
|
"node_modules/.pnpm/minimatch@3.1.2/node_modules/minimatch/minimatch.js": {
|
|
3758
|
-
"bytesInOutput":
|
|
3758
|
+
"bytesInOutput": 18225
|
|
3759
3759
|
},
|
|
3760
3760
|
"node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits_browser.js": {
|
|
3761
3761
|
"bytesInOutput": 932
|
|
@@ -3770,7 +3770,7 @@
|
|
|
3770
3770
|
"bytesInOutput": 6400
|
|
3771
3771
|
},
|
|
3772
3772
|
"node_modules/.pnpm/glob@7.2.3/node_modules/glob/sync.js": {
|
|
3773
|
-
"bytesInOutput":
|
|
3773
|
+
"bytesInOutput": 11171
|
|
3774
3774
|
},
|
|
3775
3775
|
"node_modules/.pnpm/wrappy@1.0.2/node_modules/wrappy/wrappy.js": {
|
|
3776
3776
|
"bytesInOutput": 866
|
|
@@ -3782,7 +3782,7 @@
|
|
|
3782
3782
|
"bytesInOutput": 1183
|
|
3783
3783
|
},
|
|
3784
3784
|
"node_modules/.pnpm/glob@7.2.3/node_modules/glob/glob.js": {
|
|
3785
|
-
"bytesInOutput":
|
|
3785
|
+
"bytesInOutput": 17102
|
|
3786
3786
|
},
|
|
3787
3787
|
"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/common.js": {
|
|
3788
3788
|
"bytesInOutput": 10762
|
|
@@ -3893,7 +3893,7 @@
|
|
|
3893
3893
|
"bytesInOutput": 1457
|
|
3894
3894
|
}
|
|
3895
3895
|
},
|
|
3896
|
-
"bytes":
|
|
3896
|
+
"bytes": 156912
|
|
3897
3897
|
},
|
|
3898
3898
|
"dist/packages/pulumi-tools/generators/init/generator.js": {
|
|
3899
3899
|
"imports": [
|
package/package.json
CHANGED
|
@@ -1,81 +1 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@storm-software/pulumi-tools",
|
|
3
|
-
"version": "0.1.0",
|
|
4
|
-
"type": "commonjs",
|
|
5
|
-
"description": "Tools for managing Pulumi infrastructure within a Nx workspace.",
|
|
6
|
-
"repository": {
|
|
7
|
-
"type": "github",
|
|
8
|
-
"url": "https://github.com/storm-software/storm-ops",
|
|
9
|
-
"directory": "packages/pulumi-tools"
|
|
10
|
-
},
|
|
11
|
-
"homepage": "https://stormsoftware.com",
|
|
12
|
-
"bugs": {
|
|
13
|
-
"url": "https://github.com/storm-software/storm-ops/issues",
|
|
14
|
-
"email": "support@stormsoftware.com"
|
|
15
|
-
},
|
|
16
|
-
"author": {
|
|
17
|
-
"name": "Storm Software",
|
|
18
|
-
"email": "contact@stormsoftware.com",
|
|
19
|
-
"url": "https://stormsoftware.com"
|
|
20
|
-
},
|
|
21
|
-
"license": "Apache-2.0",
|
|
22
|
-
"private": false,
|
|
23
|
-
"main": "./index.js",
|
|
24
|
-
"exports": {
|
|
25
|
-
".": "./index.js",
|
|
26
|
-
"./package.json": "./package.json",
|
|
27
|
-
"./generators.json": "./generators.json",
|
|
28
|
-
"./generators/*/schema.json": "./src/generators/*/schema.json",
|
|
29
|
-
"./executors.json": "./executors.json",
|
|
30
|
-
"./executors/*/schema.json": "./src/executors/*/schema.json",
|
|
31
|
-
"./plugins": "./src/plugins/index.js",
|
|
32
|
-
"./utils": "./src/utils/index.js"
|
|
33
|
-
},
|
|
34
|
-
"typings": "./declarations.d.ts",
|
|
35
|
-
"keywords": [
|
|
36
|
-
"storm",
|
|
37
|
-
"storm-ops",
|
|
38
|
-
"pulumi",
|
|
39
|
-
"iac",
|
|
40
|
-
"infrastructure",
|
|
41
|
-
"storm-stack",
|
|
42
|
-
"sullivanpj",
|
|
43
|
-
"monorepo"
|
|
44
|
-
],
|
|
45
|
-
"peerDependencies": {
|
|
46
|
-
"@nx/devkit": "^20.2.2",
|
|
47
|
-
"@nx/workspace": "^20.2.2",
|
|
48
|
-
"@pulumi/pulumi": "^3.144.1",
|
|
49
|
-
"nx": "^20.2.2"
|
|
50
|
-
},
|
|
51
|
-
"peerDependenciesMeta": {
|
|
52
|
-
"@nx/devkit": {
|
|
53
|
-
"optional": false
|
|
54
|
-
},
|
|
55
|
-
"@nx/workspace": {
|
|
56
|
-
"optional": false
|
|
57
|
-
},
|
|
58
|
-
"@pulumi/pulumi": {
|
|
59
|
-
"optional": false
|
|
60
|
-
},
|
|
61
|
-
"nx": {
|
|
62
|
-
"optional": false
|
|
63
|
-
}
|
|
64
|
-
},
|
|
65
|
-
"dependencies": {
|
|
66
|
-
"@nx/devkit": "20.2.2",
|
|
67
|
-
"@pulumi/pulumi": "^3.144.1",
|
|
68
|
-
"shelljs": "^0.8.5",
|
|
69
|
-
"tslib": "^2.6.3"
|
|
70
|
-
},
|
|
71
|
-
"devDependencies": {
|
|
72
|
-
"@nx/devkit": "^20.2.2",
|
|
73
|
-
"@nx/workspace": "^20.2.2",
|
|
74
|
-
"nx": "^20.2.2"
|
|
75
|
-
},
|
|
76
|
-
"publishConfig": {
|
|
77
|
-
"access": "public"
|
|
78
|
-
},
|
|
79
|
-
"executors": "./executors.json",
|
|
80
|
-
"generators": "./generators.json"
|
|
81
|
-
}
|
|
1
|
+
{"name":"@storm-software/pulumi-tools","version":"0.5.1","type":"commonjs","description":"Tools for managing Pulumi infrastructure within a Nx workspace.","repository":{"type":"github","url":"https://github.com/storm-software/storm-ops","directory":"packages/pulumi-tools"},"homepage":"https://stormsoftware.com","bugs":"https://github.com/storm-software/storm-ops/issues","author":{"name":"Storm Software","email":"contact@stormsoftware.com","url":"https://stormsoftware.com"},"license":"Apache-2.0","private":false,"main":"./index.js","exports":{".":"./index.js","./package.json":"./package.json","./generators.json":"./generators.json","./generators/*/schema.json":"./src/generators/*/schema.json","./executors.json":"./executors.json","./executors/*/schema.json":"./src/executors/*/schema.json","./plugins":"./src/plugins/index.js","./utils":"./src/utils/index.js"},"typings":"./declarations.d.ts","keywords":["iac","infrastructure","monorepo","pulumi","storm","storm-ops","storm-stack","sullivanpj"],"peerDependencies":{"@nx/devkit":"^20.3.1","@nx/workspace":"^20.3.1","@pulumi/pulumi":"^3.144.1","nx":"^20.3.1"},"peerDependenciesMeta":{"@nx/devkit":{"optional":false},"@nx/workspace":{"optional":false},"@pulumi/pulumi":{"optional":false},"nx":{"optional":false}},"dependencies":{"@nx/devkit":"^20.3.1","@pulumi/pulumi":"^3.144.1","shelljs":"^0.8.5","tslib":"^2.6.3"},"devDependencies":{"@nx/devkit":"^20.3.1","@nx/workspace":"^20.3.1","@types/node":"^22.10.2","nx":"^20.3.1"},"publishConfig":{"access":"public"},"executors":"./executors.json","generators":"./generators.json"}
|