@mrgrain/cdk-esbuild 2.2.0 → 3.1.0

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/package.json CHANGED
@@ -13,13 +13,15 @@
13
13
  "compile": "npx projen compile",
14
14
  "default": "npx projen default",
15
15
  "docgen": "npx projen docgen",
16
+ "eject": "npx projen eject",
16
17
  "eslint": "npx projen eslint",
17
18
  "package": "npx projen package",
19
+ "package-all": "npx projen package-all",
20
+ "package:js": "npx projen package:js",
18
21
  "post-compile": "npx projen post-compile",
22
+ "post-upgrade": "npx projen post-upgrade",
19
23
  "pre-compile": "npx projen pre-compile",
20
24
  "publish:git": "npx projen publish:git",
21
- "publish:github": "npx projen publish:github",
22
- "publish:npm": "npx projen publish:npm",
23
25
  "release": "npx projen release",
24
26
  "test": "npx projen test",
25
27
  "test:update": "npx projen test:update",
@@ -37,56 +39,38 @@
37
39
  "organization": false
38
40
  },
39
41
  "devDependencies": {
40
- "@aws-cdk/assert": "^1.99.0",
41
- "@aws-cdk/aws-lambda": "^1.99.0",
42
- "@aws-cdk/aws-s3": "^1.99.0",
43
- "@aws-cdk/aws-s3-assets": "^1.99.0",
44
- "@aws-cdk/aws-s3-deployment": "^1.99.0",
45
- "@aws-cdk/aws-synthetics": "^1.99.0",
46
- "@aws-cdk/core": "^1.99.0",
42
+ "@aws-cdk/aws-synthetics-alpha": "^2.9.0-alpha.0",
47
43
  "@types/eslint": "^7.29.0",
48
- "@types/jest": "^27.0.3",
49
- "@types/node": "^14.17.0",
50
- "@typescript-eslint/eslint-plugin": "^4.33.0",
51
- "@typescript-eslint/parser": "^4.33.0",
44
+ "@types/jest": "^27.4.0",
45
+ "@types/node": "^12",
46
+ "@typescript-eslint/eslint-plugin": "^5",
47
+ "@typescript-eslint/parser": "^5",
48
+ "aws-cdk-lib": "2.0.0",
49
+ "constructs": "10.0.5",
52
50
  "esbuild": "^0.14.0",
53
- "eslint": "^7.32.0",
51
+ "eslint": "^8",
54
52
  "eslint-import-resolver-node": "^0.3.6",
55
53
  "eslint-import-resolver-typescript": "^2.5.0",
56
- "eslint-plugin-import": "^2.25.3",
57
- "jest": "^27.3.1",
58
- "jest-junit": "^12",
59
- "jsii": "^1.45.0",
60
- "jsii-diff": "^1.45.0",
54
+ "eslint-plugin-import": "^2.25.4",
55
+ "jest": "^27.4.7",
56
+ "jest-junit": "^13",
57
+ "jest-mock": "^27.4.6",
58
+ "jsii": "^1.52.1",
59
+ "jsii-diff": "^1.52.1",
61
60
  "jsii-docgen": "^3.8.31",
62
- "jsii-pacmak": "^1.45.0",
63
61
  "json-schema": "^0.4.0",
64
- "npm-check-updates": "^11",
65
- "projen": "^0.34.12",
62
+ "npm-check-updates": "^12",
63
+ "projen": "^0.52.5",
66
64
  "standard-version": "^9",
67
- "ts-jest": "^27.0.7",
65
+ "ts-jest": "^27.1.3",
68
66
  "ts-morph": "^12.2.0",
69
67
  "ts-node": "^9",
70
- "typescript": "^4.5.2"
68
+ "typescript": "^4.5.5"
71
69
  },
72
70
  "peerDependencies": {
73
- "@aws-cdk/aws-lambda": "^1.99.0",
74
- "@aws-cdk/aws-s3": "^1.99.0",
75
- "@aws-cdk/aws-s3-assets": "^1.99.0",
76
- "@aws-cdk/aws-s3-deployment": "^1.99.0",
77
- "@aws-cdk/aws-synthetics": "^1.99.0",
78
- "@aws-cdk/core": "^1.99.0",
79
- "constructs": "^3.2.27"
71
+ "aws-cdk-lib": "^2.0.0",
72
+ "constructs": "^10.0.5"
80
73
  },
81
- "dependencies": {
82
- "@aws-cdk/aws-lambda": "^1.99.0",
83
- "@aws-cdk/aws-s3": "^1.99.0",
84
- "@aws-cdk/aws-s3-assets": "^1.99.0",
85
- "@aws-cdk/aws-s3-deployment": "^1.99.0",
86
- "@aws-cdk/aws-synthetics": "^1.99.0",
87
- "@aws-cdk/core": "^1.99.0"
88
- },
89
- "bundledDependencies": [],
90
74
  "keywords": [
91
75
  "aws-cdk",
92
76
  "bundler",
@@ -101,11 +85,19 @@
101
85
  "main": "lib/index.js",
102
86
  "license": "MIT",
103
87
  "homepage": "https://github.com/mrgrain/cdk-esbuild",
104
- "version": "2.2.0",
88
+ "version": "3.1.0",
105
89
  "jest": {
90
+ "testPathIgnorePatterns": [
91
+ "/node_modules/",
92
+ "/examples/"
93
+ ],
94
+ "coveragePathIgnorePatterns": [
95
+ "/node_modules/",
96
+ "/examples/"
97
+ ],
106
98
  "testMatch": [
107
- "**/__tests__/**/*.ts?(x)",
108
- "**/?(*.)+(spec|test).ts?(x)"
99
+ "<rootDir>/src/**/__tests__/**/*.ts?(x)",
100
+ "<rootDir>/(test|src)/**/?(*.)+(spec|test).ts?(x)"
109
101
  ],
110
102
  "clearMocks": true,
111
103
  "collectCoverage": true,
@@ -113,16 +105,10 @@
113
105
  "json",
114
106
  "lcov",
115
107
  "clover",
108
+ "cobertura",
116
109
  "text"
117
110
  ],
118
111
  "coverageDirectory": "coverage",
119
- "coveragePathIgnorePatterns": [
120
- "/node_modules/"
121
- ],
122
- "testPathIgnorePatterns": [
123
- "/node_modules/",
124
- "/examples/"
125
- ],
126
112
  "watchPathIgnorePatterns": [
127
113
  "/node_modules/"
128
114
  ],
@@ -35,7 +35,7 @@ export class TypeScriptSourceFile extends FileBase {
35
35
  }
36
36
 
37
37
  return [
38
- ...(this.options.marker ? [`// ${TypeScriptSourceFile.PROJEN_MARKER}`] : []),
38
+ ...(this.options.marker ? [`// ${this.marker}`] : []),
39
39
  '',
40
40
  sourceFile.getFullText(),
41
41
  ].join('\n');
package/releasetag.txt ADDED
@@ -0,0 +1 @@
1
+ v3.1.0
package/version.txt ADDED
@@ -0,0 +1 @@
1
+ 3.1.0