jsii-release 0.2.673 → 0.2.675
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/.gitattributes +1 -1
- package/.projenrc.ts +10 -10
- package/package.json +4 -1
- package/package.json.bak +4 -1
package/.gitattributes
CHANGED
|
@@ -5,13 +5,13 @@
|
|
|
5
5
|
/.gitattributes linguist-generated
|
|
6
6
|
/.github/pull_request_template.md linguist-generated
|
|
7
7
|
/.github/workflows/auto-approve.yml linguist-generated
|
|
8
|
+
/.github/workflows/auto-merge.yml linguist-generated
|
|
8
9
|
/.github/workflows/build.yml linguist-generated
|
|
9
10
|
/.github/workflows/integ.yml linguist-generated
|
|
10
11
|
/.github/workflows/pull-request-lint.yml linguist-generated
|
|
11
12
|
/.github/workflows/release.yml linguist-generated
|
|
12
13
|
/.github/workflows/upgrade-main.yml linguist-generated
|
|
13
14
|
/.gitignore linguist-generated
|
|
14
|
-
/.mergify.yml linguist-generated
|
|
15
15
|
/.npmignore linguist-generated
|
|
16
16
|
/.npmrc linguist-generated
|
|
17
17
|
/.projen/** linguist-generated
|
package/.projenrc.ts
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
import { readdirSync } from 'fs';
|
|
2
|
-
import
|
|
2
|
+
import * as cdklabs from 'cdklabs-projen-project-types';
|
|
3
|
+
import { github } from 'projen';
|
|
3
4
|
|
|
4
|
-
const project = new
|
|
5
|
+
const project = new cdklabs.CdklabsTypeScriptProject({
|
|
6
|
+
private: false,
|
|
5
7
|
projenrcTs: true,
|
|
6
8
|
defaultReleaseBranch: 'main',
|
|
7
9
|
name: 'publib',
|
|
8
10
|
description: 'Release jsii modules to multiple package managers',
|
|
9
11
|
releaseToNpm: true,
|
|
10
12
|
repository: 'https://github.com/cdklabs/publib.git',
|
|
11
|
-
authorName: 'Amazon Web Services',
|
|
12
|
-
authorOrganization: true,
|
|
13
13
|
authorUrl: 'https://aws.amazon.com',
|
|
14
14
|
homepage: 'https://github.com/cdklabs/publib',
|
|
15
|
-
autoApproveOptions: {
|
|
16
|
-
allowedUsernames: ['cdklabs-automation'],
|
|
17
|
-
secret: 'GITHUB_TOKEN',
|
|
18
|
-
},
|
|
19
15
|
devDeps: [
|
|
20
16
|
'ts-node',
|
|
21
17
|
'@aws-sdk/client-sts',
|
|
18
|
+
'cdklabs-projen-project-types',
|
|
22
19
|
],
|
|
23
|
-
|
|
20
|
+
workflowNodeVersion: '16.x',
|
|
21
|
+
minNodeVersion: '16.0.0',
|
|
22
|
+
enablePRAutoMerge: true,
|
|
23
|
+
setNodeEngineVersion: false,
|
|
24
24
|
});
|
|
25
25
|
|
|
26
26
|
// we can't use 9.x because it doesn't work with node 10.
|
|
@@ -101,7 +101,7 @@ test?.addJob('test', {
|
|
|
101
101
|
},
|
|
102
102
|
runsOn: ['ubuntu-latest'],
|
|
103
103
|
needs: ['determine_env'],
|
|
104
|
-
environment: '${{needs.
|
|
104
|
+
environment: '${{needs.determine_env.outputs.env_name}}',
|
|
105
105
|
steps: [
|
|
106
106
|
{
|
|
107
107
|
name: 'Federate into AWS',
|
package/package.json
CHANGED
|
@@ -35,6 +35,7 @@
|
|
|
35
35
|
"pre-compile": "npx projen pre-compile",
|
|
36
36
|
"release": "npx projen release",
|
|
37
37
|
"test": "npx projen test",
|
|
38
|
+
"test:update": "npx projen test:update",
|
|
38
39
|
"test:watch": "npx projen test:watch",
|
|
39
40
|
"unbump": "npx projen unbump",
|
|
40
41
|
"upgrade": "npx projen upgrade",
|
|
@@ -43,6 +44,7 @@
|
|
|
43
44
|
},
|
|
44
45
|
"author": {
|
|
45
46
|
"name": "Amazon Web Services",
|
|
47
|
+
"email": "aws-cdk-dev@amazon.com",
|
|
46
48
|
"url": "https://aws.amazon.com",
|
|
47
49
|
"organization": true
|
|
48
50
|
},
|
|
@@ -52,6 +54,7 @@
|
|
|
52
54
|
"@types/node": "^16",
|
|
53
55
|
"@typescript-eslint/eslint-plugin": "^5",
|
|
54
56
|
"@typescript-eslint/parser": "^5",
|
|
57
|
+
"cdklabs-projen-project-types": "^0.1.89",
|
|
55
58
|
"eslint": "^8",
|
|
56
59
|
"eslint-import-resolver-node": "^0.3.7",
|
|
57
60
|
"eslint-import-resolver-typescript": "^2.7.1",
|
|
@@ -73,7 +76,7 @@
|
|
|
73
76
|
"main": "lib/index.js",
|
|
74
77
|
"license": "Apache-2.0",
|
|
75
78
|
"homepage": "https://github.com/cdklabs/publib",
|
|
76
|
-
"version": "0.2.
|
|
79
|
+
"version": "0.2.675",
|
|
77
80
|
"jest": {
|
|
78
81
|
"testMatch": [
|
|
79
82
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|
package/package.json.bak
CHANGED
|
@@ -35,6 +35,7 @@
|
|
|
35
35
|
"pre-compile": "npx projen pre-compile",
|
|
36
36
|
"release": "npx projen release",
|
|
37
37
|
"test": "npx projen test",
|
|
38
|
+
"test:update": "npx projen test:update",
|
|
38
39
|
"test:watch": "npx projen test:watch",
|
|
39
40
|
"unbump": "npx projen unbump",
|
|
40
41
|
"upgrade": "npx projen upgrade",
|
|
@@ -43,6 +44,7 @@
|
|
|
43
44
|
},
|
|
44
45
|
"author": {
|
|
45
46
|
"name": "Amazon Web Services",
|
|
47
|
+
"email": "aws-cdk-dev@amazon.com",
|
|
46
48
|
"url": "https://aws.amazon.com",
|
|
47
49
|
"organization": true
|
|
48
50
|
},
|
|
@@ -52,6 +54,7 @@
|
|
|
52
54
|
"@types/node": "^16",
|
|
53
55
|
"@typescript-eslint/eslint-plugin": "^5",
|
|
54
56
|
"@typescript-eslint/parser": "^5",
|
|
57
|
+
"cdklabs-projen-project-types": "^0.1.89",
|
|
55
58
|
"eslint": "^8",
|
|
56
59
|
"eslint-import-resolver-node": "^0.3.7",
|
|
57
60
|
"eslint-import-resolver-typescript": "^2.7.1",
|
|
@@ -73,7 +76,7 @@
|
|
|
73
76
|
"main": "lib/index.js",
|
|
74
77
|
"license": "Apache-2.0",
|
|
75
78
|
"homepage": "https://github.com/cdklabs/publib",
|
|
76
|
-
"version": "0.2.
|
|
79
|
+
"version": "0.2.675",
|
|
77
80
|
"jest": {
|
|
78
81
|
"testMatch": [
|
|
79
82
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|