p6-cdk-namer 0.9.10 → 0.9.12

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 CHANGED
@@ -3978,6 +3978,6 @@
3978
3978
  "symbolId": "src/p6namer:P6Namer"
3979
3979
  }
3980
3980
  },
3981
- "version": "0.9.10",
3982
- "fingerprint": "Dr2OmwTJUCQ+OQ10TlCqlwY7lPRxAUZV3tRw9+rQWN8="
3981
+ "version": "0.9.12",
3982
+ "fingerprint": "FBCiT10p3toHtRMXMto0/Kwq3fGEWn7G0/k+kWI3/CU="
3983
3983
  }
@@ -15,6 +15,7 @@ main() {
15
15
  tar -czf dist/js/$tgz package
16
16
  rm -rf package
17
17
  tar -tzf dist/js/$tgz
18
+ find dist/
18
19
 
19
20
  return 0
20
21
  }
package/bin/version.bash CHANGED
@@ -36,6 +36,7 @@ main() {
36
36
  echo "$log_lines" >dist/changelog.md
37
37
  echo "New semantic version tag: $new_tag"
38
38
  git diff
39
+
39
40
  return 0
40
41
  }
41
42
 
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.10" };
34
+ static [JSII_RTTI_SYMBOL_1] = { fqn: "p6-cdk-namer.P6Namer", version: "0.9.12" };
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 && bin/clean_tgz.bash",
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 && npm run diagram:update",
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.10",
104
+ "version": "0.9.12",
105
105
  "jsii": {
106
106
  "outdir": "dist",
107
107
  "tsc": {