p6-cdk-namer 0.9.9 → 0.9.11
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/.jsii +2 -2
- package/bin/clean_tgz.bash +1 -0
- package/bin/version.bash +1 -0
- package/lib/p6namer.js +1 -1
- package/package.json +4 -4
package/.jsii
CHANGED
package/bin/clean_tgz.bash
CHANGED
package/bin/version.bash
CHANGED
package/lib/p6namer.js
CHANGED
|
@@ -31,7 +31,7 @@ const lambdajs = __importStar(require("aws-cdk-lib/aws-lambda-nodejs"));
|
|
|
31
31
|
const cr = __importStar(require("aws-cdk-lib/custom-resources"));
|
|
32
32
|
const floyd = __importStar(require("cdk-iam-floyd"));
|
|
33
33
|
class P6Namer extends cdk.Resource {
|
|
34
|
-
static [JSII_RTTI_SYMBOL_1] = { fqn: "p6-cdk-namer.P6Namer", version: "0.9.
|
|
34
|
+
static [JSII_RTTI_SYMBOL_1] = { fqn: "p6-cdk-namer.P6Namer", version: "0.9.11" };
|
|
35
35
|
constructor(scope, id, props) {
|
|
36
36
|
super(scope, id);
|
|
37
37
|
const policy = new floyd.Statement.Iam().allow().toCreateAccountAlias();
|
package/package.json
CHANGED
|
@@ -8,10 +8,10 @@
|
|
|
8
8
|
"scripts": {
|
|
9
9
|
"act:build": "act --container-architecture linux/amd64 --container-daemon-socket - --container-options \"--memory 4g\" -j build",
|
|
10
10
|
"act:release": "act --container-architecture linux/amd64 --container-daemon-socket - --container-options \"--memory 4g\" -j release",
|
|
11
|
-
"build": "npm run ci && npm run jsii:pacmak:parallel
|
|
12
|
-
"ci:gha": "bin/version.bash && npm run ci:both",
|
|
11
|
+
"build": "npm run ci:local && npm run jsii:pacmak:parallel",
|
|
13
12
|
"ci:both": "npm run compile && npm run lint && npm run jsii:docgen && npm run test",
|
|
14
|
-
"ci": "npm run ci:both
|
|
13
|
+
"ci:gha": "npm run ci:both",
|
|
14
|
+
"ci:local": "npm run ci:both && npm run diagram:update",
|
|
15
15
|
"clean": "rm -rf dist/ lib/ cdk.out/ coverage/ .jsii",
|
|
16
16
|
"compile": "npm run tsc:compile && npm run jsii:compile",
|
|
17
17
|
"diagram:run": "npm run diagram:update && npm run diagram:serve",
|
|
@@ -101,7 +101,7 @@
|
|
|
101
101
|
"main": "lib/index.js",
|
|
102
102
|
"types": "src/index.d.ts",
|
|
103
103
|
"license": "Apache-2.0",
|
|
104
|
-
"version": "0.9.
|
|
104
|
+
"version": "0.9.11",
|
|
105
105
|
"jsii": {
|
|
106
106
|
"outdir": "dist",
|
|
107
107
|
"tsc": {
|