@mrgrain/cdk-esbuild 3.11.1 → 3.11.3
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 +93 -59
- package/CHANGELOG.md +14 -0
- package/lib/asset.js +3 -3
- package/lib/bundler.js +5 -4
- package/lib/code.js +3 -3
- package/lib/dynamic-package.d.ts +1 -1
- package/lib/dynamic-package.js +9 -2
- package/lib/esbuild-source.js +1 -1
- package/lib/esbuild-types.d.ts +3 -0
- package/lib/esbuild-types.js +1 -1
- package/lib/inline-code.js +8 -8
- package/lib/source.js +2 -2
- package/lib/utils.d.ts +1 -5
- package/lib/utils.js +6 -6
- package/package.json +9 -8
package/package.json
CHANGED
|
@@ -27,7 +27,6 @@
|
|
|
27
27
|
"publish:git": "npx projen publish:git",
|
|
28
28
|
"release": "npx projen release",
|
|
29
29
|
"test": "npx projen test",
|
|
30
|
-
"test:update": "npx projen test:update",
|
|
31
30
|
"test:watch": "npx projen test:watch",
|
|
32
31
|
"unbump": "npx projen unbump",
|
|
33
32
|
"upgrade": "npx projen upgrade",
|
|
@@ -57,18 +56,18 @@
|
|
|
57
56
|
"jest": "^27",
|
|
58
57
|
"jest-junit": "^13",
|
|
59
58
|
"jest-mock": "^27.5.1",
|
|
60
|
-
"jsii": "^1.
|
|
61
|
-
"jsii-diff": "^1.
|
|
59
|
+
"jsii": "^1.70.0",
|
|
60
|
+
"jsii-diff": "^1.70.0",
|
|
62
61
|
"jsii-docgen": "^3.8.31",
|
|
63
|
-
"jsii-pacmak": "^1.
|
|
62
|
+
"jsii-pacmak": "^1.70.0",
|
|
64
63
|
"json-schema": "^0.4.0",
|
|
65
|
-
"npm-check-updates": "^
|
|
66
|
-
"projen": "^0.
|
|
64
|
+
"npm-check-updates": "^16",
|
|
65
|
+
"projen": "^0.65.4",
|
|
67
66
|
"standard-version": "^9",
|
|
68
67
|
"ts-jest": "^27",
|
|
69
68
|
"ts-morph": "^15.1.0",
|
|
70
69
|
"ts-node": "^10",
|
|
71
|
-
"typescript": "^4.
|
|
70
|
+
"typescript": "^4.8.4"
|
|
72
71
|
},
|
|
73
72
|
"peerDependencies": {
|
|
74
73
|
"aws-cdk-lib": "^2.0.0",
|
|
@@ -88,7 +87,7 @@
|
|
|
88
87
|
"main": "lib/index.js",
|
|
89
88
|
"license": "MIT",
|
|
90
89
|
"homepage": "https://github.com/mrgrain/cdk-esbuild",
|
|
91
|
-
"version": "3.11.
|
|
90
|
+
"version": "3.11.3",
|
|
92
91
|
"jest": {
|
|
93
92
|
"testPathIgnorePatterns": [
|
|
94
93
|
"/node_modules/",
|
|
@@ -155,6 +154,8 @@
|
|
|
155
154
|
"twitter": "@mrgrain"
|
|
156
155
|
},
|
|
157
156
|
"overrides": {
|
|
157
|
+
"@types/responselike": "1.0.0",
|
|
158
|
+
"got": "12.3.1",
|
|
158
159
|
"@types/prettier": "2.6.0"
|
|
159
160
|
},
|
|
160
161
|
"optionalDependencies": {
|