eslint-plugin-awscdk 0.0.0 → 0.0.4

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.
Files changed (2) hide show
  1. package/.projenrc.ts +10 -1
  2. package/package.json +7 -8
package/.projenrc.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { TypeScriptAppProject } from 'projen';
1
+ import { DependenciesUpgradeMechanism, TypeScriptAppProject } from 'projen';
2
2
 
3
3
  const project = new TypeScriptAppProject({
4
4
  defaultReleaseBranch: 'main',
@@ -14,9 +14,18 @@ const project = new TypeScriptAppProject({
14
14
 
15
15
  autoApproveUpgrades: true,
16
16
  autoApproveOptions: {
17
+ allowedUsernames: ['corymhall'],
17
18
  secret: 'GITHUB_TOKEN',
18
19
  },
19
20
 
21
+ depsUpgrade: DependenciesUpgradeMechanism.githubWorkflow({
22
+ ignoreProjen: false,
23
+ workflowOptions: {
24
+ labels: ['auto-approve'],
25
+ secret: 'PROJEN_GITHUB_TOKEN',
26
+ },
27
+ }),
28
+
20
29
  devDeps: [
21
30
  '@types/eslint',
22
31
  '@types/jest',
package/package.json CHANGED
@@ -17,7 +17,6 @@
17
17
  "publish:github": "npx projen publish:github",
18
18
  "publish:npm": "npx projen publish:npm",
19
19
  "upgrade": "npx projen upgrade",
20
- "upgrade-projen": "npx projen upgrade-projen",
21
20
  "watch": "npx projen watch",
22
21
  "package": "npx projen package",
23
22
  "eslint": "npx projen eslint",
@@ -30,16 +29,16 @@
30
29
  "@types/jest": "^27.0.2",
31
30
  "@types/node": "^14.17.0",
32
31
  "@typescript-eslint/eslint-plugin": "^4.31.2",
33
- "@typescript-eslint/parser": "^4.19.0",
34
- "eslint": "^7.22.0",
32
+ "@typescript-eslint/parser": "^4.31.2",
33
+ "eslint": "^7.32.0",
35
34
  "eslint-import-resolver-node": "^0.3.6",
36
35
  "eslint-import-resolver-typescript": "^2.5.0",
37
36
  "eslint-plugin-import": "^2.24.2",
38
- "jest": "^27.2.1",
37
+ "jest": "^27.2.2",
39
38
  "jest-junit": "^12",
40
39
  "json-schema": "^0.3.0",
41
40
  "npm-check-updates": "^11",
42
- "projen": "^0.28.28",
41
+ "projen": "^0.28.29",
43
42
  "standard-version": "^9",
44
43
  "ts-jest": "^27.0.5",
45
44
  "ts-node": "^9",
@@ -47,13 +46,13 @@
47
46
  },
48
47
  "dependencies": {
49
48
  "@typescript-eslint/experimental-utils": "^4.31.2",
50
- "@typescript-eslint/parser": "^4.22.0",
51
- "eslint": "^7.24.0"
49
+ "@typescript-eslint/parser": "^4.31.2",
50
+ "eslint": "^7.32.0"
52
51
  },
53
52
  "bundledDependencies": [],
54
53
  "main": "lib/index.js",
55
54
  "license": "Apache-2.0",
56
- "version": "0.0.0",
55
+ "version": "0.0.4",
57
56
  "jest": {
58
57
  "testMatch": [
59
58
  "**/__tests__/**/*.ts?(x)",