@storm-software/pulumi-tools 0.1.0 → 0.6.0
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 +53 -0
- package/{src → dist/src}/executors/up/schema.d.ts +1 -0
- package/package.json +1 -81
- package/executors/config/executor.js +0 -4847
- package/executors/import/executor.js +0 -4846
- package/executors/preview/executor.js +0 -4843
- package/executors/refresh/executor.js +0 -4845
- package/executors/up/executor.js +0 -4848
- package/generators/init/generator.js +0 -150
- package/index.js +0 -5008
- package/meta.json +0 -3939
- package/src/base/base-executor.d.ts +0 -14
- package/src/base/index.d.ts +0 -2
- package/src/base/providers.d.ts +0 -6
- package/src/executors/config/executor.d.ts +0 -5
- package/src/executors/import/executor.d.ts +0 -5
- package/src/executors/index.d.ts +0 -5
- package/src/executors/preview/executor.d.ts +0 -5
- package/src/executors/refresh/executor.d.ts +0 -5
- package/src/executors/up/executor.d.ts +0 -5
- package/src/generators/index.d.ts +0 -1
- package/src/generators/init/generator.d.ts +0 -6
- package/src/index.d.ts +0 -2
- /package/{src → dist/src}/executors/config/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/config/schema.json +0 -0
- /package/{src → dist/src}/executors/import/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/import/schema.json +0 -0
- /package/{src → dist/src}/executors/preview/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/preview/schema.json +0 -0
- /package/{src → dist/src}/executors/refresh/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/refresh/schema.json +0 -0
- /package/{src → dist/src}/executors/up/schema.json +0 -0
- /package/{src → dist/src}/generators/init/files/src/index.ts.template +0 -0
- /package/{src → dist/src}/generators/init/schema.d.ts +0 -0
- /package/{src → dist/src}/generators/init/schema.json +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,56 @@
|
|
|
1
|
+
## 0.6.0 (2025-01-20)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
- **workspace-tools:** Update Nx plugin packages to use new build/dist infrastructure ([67cd3df2](https://github.com/storm-software/storm-ops/commit/67cd3df2))
|
|
6
|
+
|
|
7
|
+
## 0.5.1 (2025-01-09)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
- **workspace-tools:** Added additional troubleshooting logging to the package
|
|
12
|
+
([c2cbdcc5](https://github.com/storm-software/storm-ops/commit/c2cbdcc5))
|
|
13
|
+
|
|
14
|
+
## 0.5.0 (2025-01-08)
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
- **build-tools:** Enhanced build options resolving to allow plugin list
|
|
19
|
+
overrides
|
|
20
|
+
([94aa9ac4](https://github.com/storm-software/storm-ops/commit/94aa9ac4))
|
|
21
|
+
|
|
22
|
+
## 0.4.0 (2025-01-02)
|
|
23
|
+
|
|
24
|
+
### Features
|
|
25
|
+
|
|
26
|
+
- **storm-ops:** Updated catalog and JSON schema for `StormConfig` object
|
|
27
|
+
([bf99f680](https://github.com/storm-software/storm-ops/commit/bf99f680))
|
|
28
|
+
|
|
29
|
+
## 0.3.0 (2025-01-02)
|
|
30
|
+
|
|
31
|
+
### Features
|
|
32
|
+
|
|
33
|
+
- **config:** Regenerate the `storm.schema.json` file
|
|
34
|
+
([258c3213](https://github.com/storm-software/storm-ops/commit/258c3213))
|
|
35
|
+
|
|
36
|
+
### Dependency Upgrades
|
|
37
|
+
|
|
38
|
+
- **storm-ops:** Added `tslib` to the pnpm catalog
|
|
39
|
+
([7cd24949](https://github.com/storm-software/storm-ops/commit/7cd24949))
|
|
40
|
+
|
|
41
|
+
## 0.2.0 (2024-12-30)
|
|
42
|
+
|
|
43
|
+
### Features
|
|
44
|
+
|
|
45
|
+
- **storm-ops:** Completed enhancement around `catalog` and `workspace`
|
|
46
|
+
dependency upgrades
|
|
47
|
+
([5dd13247](https://github.com/storm-software/storm-ops/commit/5dd13247))
|
|
48
|
+
|
|
49
|
+
### Dependency Upgrades
|
|
50
|
+
|
|
51
|
+
- **storm-ops:** Added consistent `@types/node` versions across repository
|
|
52
|
+
([a569536d](https://github.com/storm-software/storm-ops/commit/a569536d))
|
|
53
|
+
|
|
1
54
|
## 0.1.0 (2024-12-23)
|
|
2
55
|
|
|
3
56
|
### Features
|
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.6.0","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":"dist/index.js","module":"dist/index.mjs","exports":{"./package.json":"./package.json","./docs/*":"./docs/*","./migrations.json":"./migrations.json","./executors.json":"./executors.json","./executors/*/schema.json":"./dist/src/executors/*/schema.json","./generators.json":"./generators.json","./generators/*/schema.json":"./dist/src/generators/*/schema.json",".":{"import":{"types":"./dist/index.d.mts","default":"./dist/index.mjs"},"require":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"default":{"types":"./dist/index.d.ts","default":"./dist/index.js"}},"./index":{"import":{"types":"./dist/index.d.mts","default":"./dist/index.mjs"},"require":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"default":{"types":"./dist/index.d.ts","default":"./dist/index.js"}},"./executors":{"import":{"types":"./dist/executors.d.mts","default":"./dist/executors.mjs"},"require":{"types":"./dist/executors.d.ts","default":"./dist/executors.js"},"default":{"types":"./dist/executors.d.ts","default":"./dist/executors.js"}},"./generators":{"import":{"types":"./dist/generators.d.mts","default":"./dist/generators.mjs"},"require":{"types":"./dist/generators.d.ts","default":"./dist/generators.js"},"default":{"types":"./dist/generators.d.ts","default":"./dist/generators.js"}},"./base":{"import":{"types":"./dist/src/base/index.d.mts","default":"./dist/src/base/index.mjs"},"require":{"types":"./dist/src/base/index.d.ts","default":"./dist/src/base/index.js"},"default":{"types":"./dist/src/base/index.d.ts","default":"./dist/src/base/index.js"}},"./base/*":{"import":{"types":"./dist/src/base/*.d.mts","default":"./dist/src/base/*.mjs"},"require":{"types":"./dist/src/base/*.d.ts","default":"./dist/src/base/*.js"},"default":{"types":"./dist/src/base/*.d.ts","default":"./dist/src/base/*.js"}},"./executors/*/executor.js":"./dist/src/executors/*/executor.js","./generators/*/generators.js":"./dist/src/generators/*/generator.js"},"typings":"dist/index.d.ts","keywords":["iac","infrastructure","monorepo","pulumi","storm","storm-ops","storm-stack","sullivanpj"],"peerDependencies":{"@nx/devkit":"^20.3.1","@pulumi/pulumi":"^3.144.1","nx":"^20.3.1"},"peerDependenciesMeta":{"@nx/devkit":{"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","@types/node":"^22.10.2","nx":"^20.3.1","tsup":"8.3.5","untyped":"^1.5.2"},"publishConfig":{"access":"public"},"executors":"./executors.json","generators":"./generators.json"}
|