@cloud-copilot/iam-collect 0.1.139 → 0.1.141

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.
@@ -0,0 +1,6 @@
1
+ /**
2
+ * iam-collect version.
3
+ * Generated by build, do not manually edit
4
+ */
5
+ export declare const IAM_COLLECT_VERSION = "0.1.141";
6
+ //# sourceMappingURL=version.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../../../src/config/version.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,eAAO,MAAM,mBAAmB,YAAY,CAAA"}
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.IAM_COLLECT_VERSION = void 0;
4
+ /**
5
+ * iam-collect version.
6
+ * Generated by build, do not manually edit
7
+ */
8
+ exports.IAM_COLLECT_VERSION = '0.1.141';
9
+ //# sourceMappingURL=version.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"version.js","sourceRoot":"","sources":["../../../src/config/version.ts"],"names":[],"mappings":";;;AAAA;;;GAGG;AACU,QAAA,mBAAmB,GAAG,SAAS,CAAA"}
@@ -0,0 +1,6 @@
1
+ /**
2
+ * iam-collect version.
3
+ * Generated by build, do not manually edit
4
+ */
5
+ export declare const IAM_COLLECT_VERSION = "0.1.141";
6
+ //# sourceMappingURL=version.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../../../src/config/version.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,eAAO,MAAM,mBAAmB,YAAY,CAAA"}
@@ -0,0 +1,6 @@
1
+ /**
2
+ * iam-collect version.
3
+ * Generated by build, do not manually edit
4
+ */
5
+ export const IAM_COLLECT_VERSION = '0.1.141';
6
+ //# sourceMappingURL=version.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"version.js","sourceRoot":"","sources":["../../../src/config/version.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,MAAM,CAAC,MAAM,mBAAmB,GAAG,SAAS,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cloud-copilot/iam-collect",
3
- "version": "0.1.139",
3
+ "version": "0.1.141",
4
4
  "description": "Collect IAM information from AWS Accounts",
5
5
  "repository": {
6
6
  "type": "git",
@@ -41,6 +41,7 @@
41
41
  "@cloud-copilot/prettier-config": "^0.1.0",
42
42
  "@semantic-release/changelog": "^6.0.3",
43
43
  "@semantic-release/commit-analyzer": "^13.0.1",
44
+ "@semantic-release/exec": "^7.1.0",
44
45
  "@semantic-release/git": "^10.0.1",
45
46
  "@semantic-release/github": "^11.0.1",
46
47
  "@semantic-release/npm": "^12.0.1",
@@ -90,13 +91,20 @@
90
91
  "npmPublish": false
91
92
  }
92
93
  ],
94
+ [
95
+ "@semantic-release/exec",
96
+ {
97
+ "prepareCmd": "echo \"/**\n * iam-collect version.\n * Generated by build, do not manually edit\n */\nexport const IAM_COLLECT_VERSION = '${nextRelease.version}'\" > src/config/version.ts"
98
+ }
99
+ ],
93
100
  [
94
101
  "@semantic-release/git",
95
102
  {
96
103
  "assets": [
97
104
  "package.json",
98
105
  "package-lock.json",
99
- "CHANGELOG.md"
106
+ "CHANGELOG.md",
107
+ "src/config/version.ts"
100
108
  ],
101
109
  "message": "chore(release): ${nextRelease.version} [skip ci]"
102
110
  }