node-backpack 0.0.414 → 0.0.416

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 CHANGED
@@ -8,6 +8,7 @@
8
8
  /.github/workflows/build.yml linguist-generated
9
9
  /.github/workflows/pull-request-lint.yml linguist-generated
10
10
  /.github/workflows/release.yml linguist-generated
11
+ /.github/workflows/upgrade-cdklabs-projen-project-types-main.yml linguist-generated
11
12
  /.github/workflows/upgrade-main.yml linguist-generated
12
13
  /.gitignore linguist-generated
13
14
  /.mergify.yml linguist-generated
package/.projenrc.ts CHANGED
@@ -1,5 +1,9 @@
1
- import { typescript } from 'projen';
2
- const project = new typescript.TypeScriptProject({
1
+ import { CdklabsTypeScriptProject } from 'cdklabs-projen-project-types';
2
+
3
+ const project = new CdklabsTypeScriptProject({
4
+ setNodeEngineVersion: false,
5
+ stability: 'stable',
6
+ private: false,
3
7
  name: 'node-backpack',
4
8
  projenrcTs: true,
5
9
  defaultReleaseBranch: 'main',
@@ -20,11 +24,6 @@ const project = new typescript.TypeScriptProject({
20
24
  bin: {
21
25
  'node-backpack': 'bin/node-backpack',
22
26
  },
23
- autoApproveOptions: {
24
- allowedUsernames: ['cdklabs-automation'],
25
- secret: 'GITHUB_TOKEN',
26
- },
27
- autoApproveUpgrades: true,
28
27
  });
29
28
 
30
29
  project.gitignore.exclude('.vscode/');
package/package.json CHANGED
@@ -20,9 +20,15 @@
20
20
  "test:watch": "npx projen test:watch",
21
21
  "unbump": "npx projen unbump",
22
22
  "upgrade": "npx projen upgrade",
23
+ "upgrade-cdklabs-projen-project-types": "npx projen upgrade-cdklabs-projen-project-types",
23
24
  "watch": "npx projen watch",
24
25
  "projen": "npx projen"
25
26
  },
27
+ "author": {
28
+ "name": "Amazon Web Services",
29
+ "email": "aws-cdk-dev@amazon.com",
30
+ "organization": true
31
+ },
26
32
  "devDependencies": {
27
33
  "@types/fs-extra": "^9.0.13",
28
34
  "@types/jest": "^27.5.2",
@@ -31,6 +37,7 @@
31
37
  "@types/node": "^16",
32
38
  "@typescript-eslint/eslint-plugin": "^5",
33
39
  "@typescript-eslint/parser": "^5",
40
+ "cdklabs-projen-project-types": "^0.1.143",
34
41
  "eslint": "^8",
35
42
  "eslint-import-resolver-node": "^0.3.7",
36
43
  "eslint-import-resolver-typescript": "^2.7.1",
@@ -38,14 +45,14 @@
38
45
  "jest": "^27",
39
46
  "jest-junit": "^15",
40
47
  "npm-check-updates": "^16",
41
- "projen": "^0.71.97",
48
+ "projen": "^0.71.98",
42
49
  "standard-version": "^9",
43
50
  "ts-jest": "^27",
44
51
  "ts-node": "^10.9.1",
45
52
  "typescript": "^4.9.5"
46
53
  },
47
54
  "dependencies": {
48
- "esbuild": "^0.18.3",
55
+ "esbuild": "^0.18.4",
49
56
  "fs-extra": "^10.1.0",
50
57
  "license-checker": "^25.0.1",
51
58
  "madge": "^5.0.2",
@@ -54,7 +61,7 @@
54
61
  },
55
62
  "main": "lib/index.js",
56
63
  "license": "Apache-2.0",
57
- "version": "0.0.414",
64
+ "version": "0.0.416",
58
65
  "jest": {
59
66
  "testMatch": [
60
67
  "<rootDir>/src/**/__tests__/**/*.ts?(x)",