projen 0.33.9 → 0.34.2
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 +579 -357
- package/API.md +139 -84
- package/docs/aws-lambda.md +5 -4
- package/docs/bundling.md +30 -0
- package/lib/awscdk/auto-discover.d.ts +0 -13
- package/lib/awscdk/auto-discover.js +5 -15
- package/lib/awscdk/cdk-config.js +1 -1
- package/lib/awscdk/cdk-tasks.js +1 -1
- package/lib/awscdk/java-app.js +1 -1
- package/lib/awscdk/lambda-function.d.ts +16 -26
- package/lib/awscdk/lambda-function.js +29 -27
- package/lib/awscdk-app-ts.js +2 -3
- package/lib/awscdk-construct.js +3 -4
- package/lib/cdk8s-app-ts.js +1 -1
- package/lib/cdk8s-construct.js +1 -1
- package/lib/cdktf-construct.js +1 -1
- package/lib/component.js +1 -1
- package/lib/construct-lib.js +1 -1
- package/lib/deps/dependencies.js +1 -1
- package/lib/dev-env.js +1 -1
- package/lib/docker-compose.js +2 -2
- package/lib/eslint.js +1 -1
- package/lib/file.js +1 -1
- package/lib/git/gitattributes.js +1 -1
- package/lib/github/auto-approve.js +1 -1
- package/lib/github/auto-merge.js +1 -1
- package/lib/github/dependabot.js +1 -1
- package/lib/github/github.d.ts +15 -0
- package/lib/github/github.js +7 -3
- package/lib/github/index.d.ts +1 -0
- package/lib/github/index.js +2 -1
- package/lib/github/mergify.js +1 -1
- package/lib/github/pr-template.js +1 -1
- package/lib/github/pull-request-lint.d.ts +61 -0
- package/lib/github/pull-request-lint.js +62 -0
- package/lib/github/stale.js +1 -1
- package/lib/github/task-workflow.js +1 -1
- package/lib/github/workflows.js +1 -1
- package/lib/gitpod.js +1 -1
- package/lib/ignore-file.js +1 -1
- package/lib/ini.js +1 -1
- package/lib/java/java-project.js +1 -1
- package/lib/java/junit.js +1 -1
- package/lib/java/maven-compile.js +1 -1
- package/lib/java/maven-packaging.js +1 -1
- package/lib/java/maven-sample.js +1 -1
- package/lib/java/pom.js +1 -1
- package/lib/java/projenrc.js +1 -1
- package/lib/javascript/bundler.d.ts +69 -33
- package/lib/javascript/bundler.js +43 -17
- package/lib/javascript/npm-config.js +1 -1
- package/lib/javascript/projenrc.js +1 -1
- package/lib/javascript/util.d.ts +1 -0
- package/lib/javascript/util.js +16 -0
- package/lib/jest.js +1 -1
- package/lib/jsii-project.js +1 -1
- package/lib/json/projenrc.js +1 -1
- package/lib/json.js +1 -1
- package/lib/license.js +1 -1
- package/lib/logger.js +1 -1
- package/lib/makefile.js +1 -1
- package/lib/node-package.d.ts +7 -0
- package/lib/node-package.js +9 -8
- package/lib/node-project.d.ts +2 -2
- package/lib/node-project.js +15 -14
- package/lib/object-file.js +1 -1
- package/lib/project-build.js +1 -1
- package/lib/project.js +6 -5
- package/lib/projects.js +1 -1
- package/lib/python/pip.js +1 -1
- package/lib/python/poetry.js +2 -2
- package/lib/python/projenrc.js +1 -1
- package/lib/python/pytest.js +1 -1
- package/lib/python/python-project.js +1 -1
- package/lib/python/python-sample.js +1 -1
- package/lib/python/requirements-file.js +1 -1
- package/lib/python/setuppy.js +1 -1
- package/lib/python/setuptools.js +1 -1
- package/lib/python/venv.js +1 -1
- package/lib/readme.js +1 -1
- package/lib/release/publisher.d.ts +7 -0
- package/lib/release/publisher.js +4 -3
- package/lib/release/release-trigger.js +1 -1
- package/lib/release/release.js +1 -1
- package/lib/sample-file.js +2 -2
- package/lib/semver.js +1 -1
- package/lib/source-code.js +1 -1
- package/lib/tasks/runtime.js +1 -1
- package/lib/tasks/task.js +1 -1
- package/lib/tasks/tasks.js +1 -1
- package/lib/textfile.js +1 -1
- package/lib/toml.js +1 -1
- package/lib/typescript/projenrc.js +1 -1
- package/lib/typescript-config.js +1 -1
- package/lib/typescript.js +3 -3
- package/lib/upgrade-dependencies.js +2 -2
- package/lib/version.js +1 -1
- package/lib/vscode/devcontainer.js +1 -1
- package/lib/vscode/launch-config.js +1 -1
- package/lib/vscode/vscode.js +1 -1
- package/lib/web/next.js +3 -3
- package/lib/web/postcss.js +1 -1
- package/lib/web/react.js +4 -4
- package/lib/web/tailwind.js +1 -1
- package/lib/xmlfile.js +1 -1
- package/lib/yaml.js +1 -1
- package/package.json +5 -5
package/.jsii
CHANGED
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"stability": "experimental"
|
|
29
29
|
},
|
|
30
30
|
"homepage": "https://github.com/projen/projen.git",
|
|
31
|
-
"jsiiVersion": "1.
|
|
31
|
+
"jsiiVersion": "1.44.0 (build 5cf3021)",
|
|
32
32
|
"license": "Apache-2.0",
|
|
33
33
|
"metadata": {
|
|
34
34
|
"jsii": {
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"projen.github.workflows": {
|
|
75
75
|
"locationInModule": {
|
|
76
76
|
"filename": "src/github/index.ts",
|
|
77
|
-
"line":
|
|
77
|
+
"line": 15
|
|
78
78
|
}
|
|
79
79
|
},
|
|
80
80
|
"projen.java": {
|
|
@@ -223,7 +223,7 @@
|
|
|
223
223
|
},
|
|
224
224
|
"locationInModule": {
|
|
225
225
|
"filename": "src/awscdk-construct.ts",
|
|
226
|
-
"line":
|
|
226
|
+
"line": 177
|
|
227
227
|
},
|
|
228
228
|
"name": "addCdkDependencies",
|
|
229
229
|
"parameters": [
|
|
@@ -247,7 +247,7 @@
|
|
|
247
247
|
},
|
|
248
248
|
"locationInModule": {
|
|
249
249
|
"filename": "src/awscdk-construct.ts",
|
|
250
|
-
"line":
|
|
250
|
+
"line": 193
|
|
251
251
|
},
|
|
252
252
|
"name": "addCdkTestDependencies",
|
|
253
253
|
"parameters": [
|
|
@@ -305,7 +305,7 @@
|
|
|
305
305
|
"immutable": true,
|
|
306
306
|
"locationInModule": {
|
|
307
307
|
"filename": "src/awscdk-construct.ts",
|
|
308
|
-
"line":
|
|
308
|
+
"line": 160
|
|
309
309
|
},
|
|
310
310
|
"name": "version",
|
|
311
311
|
"type": {
|
|
@@ -558,7 +558,7 @@
|
|
|
558
558
|
},
|
|
559
559
|
"locationInModule": {
|
|
560
560
|
"filename": "src/awscdk-app-ts.ts",
|
|
561
|
-
"line":
|
|
561
|
+
"line": 165
|
|
562
562
|
},
|
|
563
563
|
"name": "addCdkDependency",
|
|
564
564
|
"parameters": [
|
|
@@ -1166,6 +1166,24 @@
|
|
|
1166
1166
|
"primitive": "string"
|
|
1167
1167
|
}
|
|
1168
1168
|
},
|
|
1169
|
+
{
|
|
1170
|
+
"abstract": true,
|
|
1171
|
+
"docs": {
|
|
1172
|
+
"default": "undefined",
|
|
1173
|
+
"stability": "experimental",
|
|
1174
|
+
"summary": "ARN of AWS role to be assumed prior to get authorization token from AWS CodeArtifact This property must be specified only when publishing to AWS CodeArtifact (`registry` contains AWS CodeArtifact URL)."
|
|
1175
|
+
},
|
|
1176
|
+
"immutable": true,
|
|
1177
|
+
"locationInModule": {
|
|
1178
|
+
"filename": "src/node-package.ts",
|
|
1179
|
+
"line": 317
|
|
1180
|
+
},
|
|
1181
|
+
"name": "roleToAssume",
|
|
1182
|
+
"optional": true,
|
|
1183
|
+
"type": {
|
|
1184
|
+
"primitive": "string"
|
|
1185
|
+
}
|
|
1186
|
+
},
|
|
1169
1187
|
{
|
|
1170
1188
|
"abstract": true,
|
|
1171
1189
|
"docs": {
|
|
@@ -1334,7 +1352,7 @@
|
|
|
1334
1352
|
"kind": "class",
|
|
1335
1353
|
"locationInModule": {
|
|
1336
1354
|
"filename": "src/awscdk-construct.ts",
|
|
1337
|
-
"line":
|
|
1355
|
+
"line": 206
|
|
1338
1356
|
},
|
|
1339
1357
|
"name": "ConstructLibraryAws",
|
|
1340
1358
|
"symbolId": "src/awscdk-construct:ConstructLibraryAws"
|
|
@@ -1353,7 +1371,7 @@
|
|
|
1353
1371
|
"kind": "interface",
|
|
1354
1372
|
"locationInModule": {
|
|
1355
1373
|
"filename": "src/awscdk-construct.ts",
|
|
1356
|
-
"line":
|
|
1374
|
+
"line": 203
|
|
1357
1375
|
},
|
|
1358
1376
|
"name": "ConstructLibraryAwsOptions",
|
|
1359
1377
|
"symbolId": "src/awscdk-construct:ConstructLibraryAwsOptions"
|
|
@@ -4077,7 +4095,7 @@
|
|
|
4077
4095
|
},
|
|
4078
4096
|
"locationInModule": {
|
|
4079
4097
|
"filename": "src/project.ts",
|
|
4080
|
-
"line":
|
|
4098
|
+
"line": 717
|
|
4081
4099
|
},
|
|
4082
4100
|
"parameters": [
|
|
4083
4101
|
{
|
|
@@ -4091,7 +4109,7 @@
|
|
|
4091
4109
|
"kind": "class",
|
|
4092
4110
|
"locationInModule": {
|
|
4093
4111
|
"filename": "src/project.ts",
|
|
4094
|
-
"line":
|
|
4112
|
+
"line": 676
|
|
4095
4113
|
},
|
|
4096
4114
|
"methods": [
|
|
4097
4115
|
{
|
|
@@ -4103,7 +4121,7 @@
|
|
|
4103
4121
|
},
|
|
4104
4122
|
"locationInModule": {
|
|
4105
4123
|
"filename": "src/project.ts",
|
|
4106
|
-
"line":
|
|
4124
|
+
"line": 760
|
|
4107
4125
|
},
|
|
4108
4126
|
"name": "annotateGenerated",
|
|
4109
4127
|
"overrides": "projen.Project",
|
|
@@ -4129,7 +4147,7 @@
|
|
|
4129
4147
|
"immutable": true,
|
|
4130
4148
|
"locationInModule": {
|
|
4131
4149
|
"filename": "src/project.ts",
|
|
4132
|
-
"line":
|
|
4150
|
+
"line": 710
|
|
4133
4151
|
},
|
|
4134
4152
|
"name": "projectType",
|
|
4135
4153
|
"type": {
|
|
@@ -4144,7 +4162,7 @@
|
|
|
4144
4162
|
"immutable": true,
|
|
4145
4163
|
"locationInModule": {
|
|
4146
4164
|
"filename": "src/project.ts",
|
|
4147
|
-
"line":
|
|
4165
|
+
"line": 715
|
|
4148
4166
|
},
|
|
4149
4167
|
"name": "autoApprove",
|
|
4150
4168
|
"optional": true,
|
|
@@ -4161,7 +4179,7 @@
|
|
|
4161
4179
|
"immutable": true,
|
|
4162
4180
|
"locationInModule": {
|
|
4163
4181
|
"filename": "src/project.ts",
|
|
4164
|
-
"line":
|
|
4182
|
+
"line": 703
|
|
4165
4183
|
},
|
|
4166
4184
|
"name": "devContainer",
|
|
4167
4185
|
"optional": true,
|
|
@@ -4178,7 +4196,7 @@
|
|
|
4178
4196
|
"immutable": true,
|
|
4179
4197
|
"locationInModule": {
|
|
4180
4198
|
"filename": "src/project.ts",
|
|
4181
|
-
"line":
|
|
4199
|
+
"line": 682
|
|
4182
4200
|
},
|
|
4183
4201
|
"name": "github",
|
|
4184
4202
|
"optional": true,
|
|
@@ -4195,7 +4213,7 @@
|
|
|
4195
4213
|
"immutable": true,
|
|
4196
4214
|
"locationInModule": {
|
|
4197
4215
|
"filename": "src/project.ts",
|
|
4198
|
-
"line":
|
|
4216
|
+
"line": 696
|
|
4199
4217
|
},
|
|
4200
4218
|
"name": "gitpod",
|
|
4201
4219
|
"optional": true,
|
|
@@ -4212,7 +4230,7 @@
|
|
|
4212
4230
|
"immutable": true,
|
|
4213
4231
|
"locationInModule": {
|
|
4214
4232
|
"filename": "src/project.ts",
|
|
4215
|
-
"line":
|
|
4233
|
+
"line": 689
|
|
4216
4234
|
},
|
|
4217
4235
|
"name": "vscode",
|
|
4218
4236
|
"optional": true,
|
|
@@ -4237,7 +4255,7 @@
|
|
|
4237
4255
|
"kind": "interface",
|
|
4238
4256
|
"locationInModule": {
|
|
4239
4257
|
"filename": "src/project.ts",
|
|
4240
|
-
"line":
|
|
4258
|
+
"line": 561
|
|
4241
4259
|
},
|
|
4242
4260
|
"name": "GitHubProjectOptions",
|
|
4243
4261
|
"properties": [
|
|
@@ -4251,7 +4269,7 @@
|
|
|
4251
4269
|
"immutable": true,
|
|
4252
4270
|
"locationInModule": {
|
|
4253
4271
|
"filename": "src/project.ts",
|
|
4254
|
-
"line":
|
|
4272
|
+
"line": 642
|
|
4255
4273
|
},
|
|
4256
4274
|
"name": "autoApproveOptions",
|
|
4257
4275
|
"optional": true,
|
|
@@ -4270,7 +4288,7 @@
|
|
|
4270
4288
|
"immutable": true,
|
|
4271
4289
|
"locationInModule": {
|
|
4272
4290
|
"filename": "src/project.ts",
|
|
4273
|
-
"line":
|
|
4291
|
+
"line": 650
|
|
4274
4292
|
},
|
|
4275
4293
|
"name": "autoMergeOptions",
|
|
4276
4294
|
"optional": true,
|
|
@@ -4288,7 +4306,7 @@
|
|
|
4288
4306
|
"immutable": true,
|
|
4289
4307
|
"locationInModule": {
|
|
4290
4308
|
"filename": "src/project.ts",
|
|
4291
|
-
"line":
|
|
4309
|
+
"line": 621
|
|
4292
4310
|
},
|
|
4293
4311
|
"name": "clobber",
|
|
4294
4312
|
"optional": true,
|
|
@@ -4306,7 +4324,7 @@
|
|
|
4306
4324
|
"immutable": true,
|
|
4307
4325
|
"locationInModule": {
|
|
4308
4326
|
"filename": "src/project.ts",
|
|
4309
|
-
"line":
|
|
4327
|
+
"line": 615
|
|
4310
4328
|
},
|
|
4311
4329
|
"name": "devContainer",
|
|
4312
4330
|
"optional": true,
|
|
@@ -4325,7 +4343,7 @@
|
|
|
4325
4343
|
"immutable": true,
|
|
4326
4344
|
"locationInModule": {
|
|
4327
4345
|
"filename": "src/project.ts",
|
|
4328
|
-
"line":
|
|
4346
|
+
"line": 585
|
|
4329
4347
|
},
|
|
4330
4348
|
"name": "github",
|
|
4331
4349
|
"optional": true,
|
|
@@ -4343,7 +4361,7 @@
|
|
|
4343
4361
|
"immutable": true,
|
|
4344
4362
|
"locationInModule": {
|
|
4345
4363
|
"filename": "src/project.ts",
|
|
4346
|
-
"line":
|
|
4364
|
+
"line": 592
|
|
4347
4365
|
},
|
|
4348
4366
|
"name": "githubOptions",
|
|
4349
4367
|
"optional": true,
|
|
@@ -4361,7 +4379,7 @@
|
|
|
4361
4379
|
"immutable": true,
|
|
4362
4380
|
"locationInModule": {
|
|
4363
4381
|
"filename": "src/project.ts",
|
|
4364
|
-
"line":
|
|
4382
|
+
"line": 567
|
|
4365
4383
|
},
|
|
4366
4384
|
"name": "gitpod",
|
|
4367
4385
|
"optional": true,
|
|
@@ -4380,7 +4398,7 @@
|
|
|
4380
4398
|
"immutable": true,
|
|
4381
4399
|
"locationInModule": {
|
|
4382
4400
|
"filename": "src/project.ts",
|
|
4383
|
-
"line":
|
|
4401
|
+
"line": 600
|
|
4384
4402
|
},
|
|
4385
4403
|
"name": "mergify",
|
|
4386
4404
|
"optional": true,
|
|
@@ -4399,7 +4417,7 @@
|
|
|
4399
4417
|
"immutable": true,
|
|
4400
4418
|
"locationInModule": {
|
|
4401
4419
|
"filename": "src/project.ts",
|
|
4402
|
-
"line":
|
|
4420
|
+
"line": 608
|
|
4403
4421
|
},
|
|
4404
4422
|
"name": "mergifyOptions",
|
|
4405
4423
|
"optional": true,
|
|
@@ -4418,7 +4436,7 @@
|
|
|
4418
4436
|
"immutable": true,
|
|
4419
4437
|
"locationInModule": {
|
|
4420
4438
|
"filename": "src/project.ts",
|
|
4421
|
-
"line":
|
|
4439
|
+
"line": 636
|
|
4422
4440
|
},
|
|
4423
4441
|
"name": "projectType",
|
|
4424
4442
|
"optional": true,
|
|
@@ -4437,7 +4455,7 @@
|
|
|
4437
4455
|
"immutable": true,
|
|
4438
4456
|
"locationInModule": {
|
|
4439
4457
|
"filename": "src/project.ts",
|
|
4440
|
-
"line":
|
|
4458
|
+
"line": 629
|
|
4441
4459
|
},
|
|
4442
4460
|
"name": "readme",
|
|
4443
4461
|
"optional": true,
|
|
@@ -4456,7 +4474,7 @@
|
|
|
4456
4474
|
"immutable": true,
|
|
4457
4475
|
"locationInModule": {
|
|
4458
4476
|
"filename": "src/project.ts",
|
|
4459
|
-
"line":
|
|
4477
|
+
"line": 664
|
|
4460
4478
|
},
|
|
4461
4479
|
"name": "stale",
|
|
4462
4480
|
"optional": true,
|
|
@@ -4475,7 +4493,7 @@
|
|
|
4475
4493
|
"immutable": true,
|
|
4476
4494
|
"locationInModule": {
|
|
4477
4495
|
"filename": "src/project.ts",
|
|
4478
|
-
"line":
|
|
4496
|
+
"line": 657
|
|
4479
4497
|
},
|
|
4480
4498
|
"name": "staleOptions",
|
|
4481
4499
|
"optional": true,
|
|
@@ -4494,7 +4512,7 @@
|
|
|
4494
4512
|
"immutable": true,
|
|
4495
4513
|
"locationInModule": {
|
|
4496
4514
|
"filename": "src/project.ts",
|
|
4497
|
-
"line":
|
|
4515
|
+
"line": 576
|
|
4498
4516
|
},
|
|
4499
4517
|
"name": "vscode",
|
|
4500
4518
|
"optional": true,
|
|
@@ -9073,7 +9091,7 @@
|
|
|
9073
9091
|
"kind": "interface",
|
|
9074
9092
|
"locationInModule": {
|
|
9075
9093
|
"filename": "src/project.ts",
|
|
9076
|
-
"line":
|
|
9094
|
+
"line": 535
|
|
9077
9095
|
},
|
|
9078
9096
|
"name": "NewProject",
|
|
9079
9097
|
"properties": [
|
|
@@ -9086,7 +9104,7 @@
|
|
|
9086
9104
|
"immutable": true,
|
|
9087
9105
|
"locationInModule": {
|
|
9088
9106
|
"filename": "src/project.ts",
|
|
9089
|
-
"line":
|
|
9107
|
+
"line": 544
|
|
9090
9108
|
},
|
|
9091
9109
|
"name": "args",
|
|
9092
9110
|
"type": {
|
|
@@ -9109,7 +9127,7 @@
|
|
|
9109
9127
|
"immutable": true,
|
|
9110
9128
|
"locationInModule": {
|
|
9111
9129
|
"filename": "src/project.ts",
|
|
9112
|
-
"line":
|
|
9130
|
+
"line": 555
|
|
9113
9131
|
},
|
|
9114
9132
|
"name": "comments",
|
|
9115
9133
|
"type": {
|
|
@@ -9125,7 +9143,7 @@
|
|
|
9125
9143
|
"immutable": true,
|
|
9126
9144
|
"locationInModule": {
|
|
9127
9145
|
"filename": "src/project.ts",
|
|
9128
|
-
"line":
|
|
9146
|
+
"line": 539
|
|
9129
9147
|
},
|
|
9130
9148
|
"name": "fqn",
|
|
9131
9149
|
"type": {
|
|
@@ -9141,7 +9159,7 @@
|
|
|
9141
9159
|
"immutable": true,
|
|
9142
9160
|
"locationInModule": {
|
|
9143
9161
|
"filename": "src/project.ts",
|
|
9144
|
-
"line":
|
|
9162
|
+
"line": 549
|
|
9145
9163
|
},
|
|
9146
9164
|
"name": "type",
|
|
9147
9165
|
"type": {
|
|
@@ -9204,7 +9222,7 @@
|
|
|
9204
9222
|
},
|
|
9205
9223
|
"locationInModule": {
|
|
9206
9224
|
"filename": "src/node-package.ts",
|
|
9207
|
-
"line":
|
|
9225
|
+
"line": 411
|
|
9208
9226
|
},
|
|
9209
9227
|
"parameters": [
|
|
9210
9228
|
{
|
|
@@ -9225,7 +9243,7 @@
|
|
|
9225
9243
|
"kind": "class",
|
|
9226
9244
|
"locationInModule": {
|
|
9227
9245
|
"filename": "src/node-package.ts",
|
|
9228
|
-
"line":
|
|
9246
|
+
"line": 323
|
|
9229
9247
|
},
|
|
9230
9248
|
"methods": [
|
|
9231
9249
|
{
|
|
@@ -9234,7 +9252,7 @@
|
|
|
9234
9252
|
},
|
|
9235
9253
|
"locationInModule": {
|
|
9236
9254
|
"filename": "src/node-package.ts",
|
|
9237
|
-
"line":
|
|
9255
|
+
"line": 589
|
|
9238
9256
|
},
|
|
9239
9257
|
"name": "addBin",
|
|
9240
9258
|
"parameters": [
|
|
@@ -9259,7 +9277,7 @@
|
|
|
9259
9277
|
},
|
|
9260
9278
|
"locationInModule": {
|
|
9261
9279
|
"filename": "src/node-package.ts",
|
|
9262
|
-
"line":
|
|
9280
|
+
"line": 560
|
|
9263
9281
|
},
|
|
9264
9282
|
"name": "addBundledDeps",
|
|
9265
9283
|
"parameters": [
|
|
@@ -9284,7 +9302,7 @@
|
|
|
9284
9302
|
},
|
|
9285
9303
|
"locationInModule": {
|
|
9286
9304
|
"filename": "src/node-package.ts",
|
|
9287
|
-
"line":
|
|
9305
|
+
"line": 503
|
|
9288
9306
|
},
|
|
9289
9307
|
"name": "addDeps",
|
|
9290
9308
|
"parameters": [
|
|
@@ -9309,7 +9327,7 @@
|
|
|
9309
9327
|
},
|
|
9310
9328
|
"locationInModule": {
|
|
9311
9329
|
"filename": "src/node-package.ts",
|
|
9312
|
-
"line":
|
|
9330
|
+
"line": 518
|
|
9313
9331
|
},
|
|
9314
9332
|
"name": "addDevDeps",
|
|
9315
9333
|
"parameters": [
|
|
@@ -9334,7 +9352,7 @@
|
|
|
9334
9352
|
},
|
|
9335
9353
|
"locationInModule": {
|
|
9336
9354
|
"filename": "src/node-package.ts",
|
|
9337
|
-
"line":
|
|
9355
|
+
"line": 575
|
|
9338
9356
|
},
|
|
9339
9357
|
"name": "addEngine",
|
|
9340
9358
|
"parameters": [
|
|
@@ -9368,7 +9386,7 @@
|
|
|
9368
9386
|
},
|
|
9369
9387
|
"locationInModule": {
|
|
9370
9388
|
"filename": "src/node-package.ts",
|
|
9371
|
-
"line":
|
|
9389
|
+
"line": 629
|
|
9372
9390
|
},
|
|
9373
9391
|
"name": "addField",
|
|
9374
9392
|
"parameters": [
|
|
@@ -9399,7 +9417,7 @@
|
|
|
9399
9417
|
},
|
|
9400
9418
|
"locationInModule": {
|
|
9401
9419
|
"filename": "src/node-package.ts",
|
|
9402
|
-
"line":
|
|
9420
|
+
"line": 583
|
|
9403
9421
|
},
|
|
9404
9422
|
"name": "addKeywords",
|
|
9405
9423
|
"parameters": [
|
|
@@ -9424,7 +9442,7 @@
|
|
|
9424
9442
|
},
|
|
9425
9443
|
"locationInModule": {
|
|
9426
9444
|
"filename": "src/node-package.ts",
|
|
9427
|
-
"line":
|
|
9445
|
+
"line": 538
|
|
9428
9446
|
},
|
|
9429
9447
|
"name": "addPeerDeps",
|
|
9430
9448
|
"parameters": [
|
|
@@ -9449,7 +9467,7 @@
|
|
|
9449
9467
|
},
|
|
9450
9468
|
"locationInModule": {
|
|
9451
9469
|
"filename": "src/node-package.ts",
|
|
9452
|
-
"line":
|
|
9470
|
+
"line": 637
|
|
9453
9471
|
},
|
|
9454
9472
|
"name": "addVersion",
|
|
9455
9473
|
"parameters": [
|
|
@@ -9472,7 +9490,7 @@
|
|
|
9472
9490
|
},
|
|
9473
9491
|
"locationInModule": {
|
|
9474
9492
|
"filename": "src/node-package.ts",
|
|
9475
|
-
"line":
|
|
9493
|
+
"line": 619
|
|
9476
9494
|
},
|
|
9477
9495
|
"name": "hasScript",
|
|
9478
9496
|
"parameters": [
|
|
@@ -9500,7 +9518,7 @@
|
|
|
9500
9518
|
},
|
|
9501
9519
|
"locationInModule": {
|
|
9502
9520
|
"filename": "src/node-package.ts",
|
|
9503
|
-
"line":
|
|
9521
|
+
"line": 706
|
|
9504
9522
|
},
|
|
9505
9523
|
"name": "postSynthesize",
|
|
9506
9524
|
"overrides": "projen.Component"
|
|
@@ -9512,7 +9530,7 @@
|
|
|
9512
9530
|
},
|
|
9513
9531
|
"locationInModule": {
|
|
9514
9532
|
"filename": "src/node-package.ts",
|
|
9515
|
-
"line":
|
|
9533
|
+
"line": 701
|
|
9516
9534
|
},
|
|
9517
9535
|
"name": "preSynthesize",
|
|
9518
9536
|
"overrides": "projen.Component"
|
|
@@ -9524,7 +9542,7 @@
|
|
|
9524
9542
|
},
|
|
9525
9543
|
"locationInModule": {
|
|
9526
9544
|
"filename": "src/node-package.ts",
|
|
9527
|
-
"line":
|
|
9545
|
+
"line": 609
|
|
9528
9546
|
},
|
|
9529
9547
|
"name": "removeScript",
|
|
9530
9548
|
"parameters": [
|
|
@@ -9546,7 +9564,7 @@
|
|
|
9546
9564
|
},
|
|
9547
9565
|
"locationInModule": {
|
|
9548
9566
|
"filename": "src/node-package.ts",
|
|
9549
|
-
"line":
|
|
9567
|
+
"line": 658
|
|
9550
9568
|
},
|
|
9551
9569
|
"name": "renderUpgradePackagesCommand",
|
|
9552
9570
|
"parameters": [
|
|
@@ -9587,7 +9605,7 @@
|
|
|
9587
9605
|
},
|
|
9588
9606
|
"locationInModule": {
|
|
9589
9607
|
"filename": "src/node-package.ts",
|
|
9590
|
-
"line":
|
|
9608
|
+
"line": 601
|
|
9591
9609
|
},
|
|
9592
9610
|
"name": "setScript",
|
|
9593
9611
|
"parameters": [
|
|
@@ -9622,7 +9640,7 @@
|
|
|
9622
9640
|
"immutable": true,
|
|
9623
9641
|
"locationInModule": {
|
|
9624
9642
|
"filename": "src/node-package.ts",
|
|
9625
|
-
"line":
|
|
9643
|
+
"line": 338
|
|
9626
9644
|
},
|
|
9627
9645
|
"name": "allowLibraryDependencies",
|
|
9628
9646
|
"type": {
|
|
@@ -9637,7 +9655,7 @@
|
|
|
9637
9655
|
"immutable": true,
|
|
9638
9656
|
"locationInModule": {
|
|
9639
9657
|
"filename": "src/node-package.ts",
|
|
9640
|
-
"line":
|
|
9658
|
+
"line": 333
|
|
9641
9659
|
},
|
|
9642
9660
|
"name": "entrypoint",
|
|
9643
9661
|
"type": {
|
|
@@ -9652,7 +9670,7 @@
|
|
|
9652
9670
|
"immutable": true,
|
|
9653
9671
|
"locationInModule": {
|
|
9654
9672
|
"filename": "src/node-package.ts",
|
|
9655
|
-
"line":
|
|
9673
|
+
"line": 651
|
|
9656
9674
|
},
|
|
9657
9675
|
"name": "installAndUpdateLockfileCommand",
|
|
9658
9676
|
"type": {
|
|
@@ -9667,7 +9685,7 @@
|
|
|
9667
9685
|
"immutable": true,
|
|
9668
9686
|
"locationInModule": {
|
|
9669
9687
|
"filename": "src/node-package.ts",
|
|
9670
|
-
"line":
|
|
9688
|
+
"line": 644
|
|
9671
9689
|
},
|
|
9672
9690
|
"name": "installCommand",
|
|
9673
9691
|
"type": {
|
|
@@ -9682,7 +9700,7 @@
|
|
|
9682
9700
|
"immutable": true,
|
|
9683
9701
|
"locationInModule": {
|
|
9684
9702
|
"filename": "src/node-package.ts",
|
|
9685
|
-
"line":
|
|
9703
|
+
"line": 402
|
|
9686
9704
|
},
|
|
9687
9705
|
"name": "lockFile",
|
|
9688
9706
|
"type": {
|
|
@@ -9697,7 +9715,7 @@
|
|
|
9697
9715
|
"immutable": true,
|
|
9698
9716
|
"locationInModule": {
|
|
9699
9717
|
"filename": "src/node-package.ts",
|
|
9700
|
-
"line":
|
|
9718
|
+
"line": 348
|
|
9701
9719
|
},
|
|
9702
9720
|
"name": "manifest",
|
|
9703
9721
|
"type": {
|
|
@@ -9712,7 +9730,7 @@
|
|
|
9712
9730
|
"immutable": true,
|
|
9713
9731
|
"locationInModule": {
|
|
9714
9732
|
"filename": "src/node-package.ts",
|
|
9715
|
-
"line":
|
|
9733
|
+
"line": 397
|
|
9716
9734
|
},
|
|
9717
9735
|
"name": "npmAccess",
|
|
9718
9736
|
"type": {
|
|
@@ -9727,7 +9745,7 @@
|
|
|
9727
9745
|
"immutable": true,
|
|
9728
9746
|
"locationInModule": {
|
|
9729
9747
|
"filename": "src/node-package.ts",
|
|
9730
|
-
"line":
|
|
9748
|
+
"line": 370
|
|
9731
9749
|
},
|
|
9732
9750
|
"name": "npmDistTag",
|
|
9733
9751
|
"type": {
|
|
@@ -9742,7 +9760,7 @@
|
|
|
9742
9760
|
"immutable": true,
|
|
9743
9761
|
"locationInModule": {
|
|
9744
9762
|
"filename": "src/node-package.ts",
|
|
9745
|
-
"line":
|
|
9763
|
+
"line": 380
|
|
9746
9764
|
},
|
|
9747
9765
|
"name": "npmRegistry",
|
|
9748
9766
|
"type": {
|
|
@@ -9757,7 +9775,7 @@
|
|
|
9757
9775
|
"immutable": true,
|
|
9758
9776
|
"locationInModule": {
|
|
9759
9777
|
"filename": "src/node-package.ts",
|
|
9760
|
-
"line":
|
|
9778
|
+
"line": 375
|
|
9761
9779
|
},
|
|
9762
9780
|
"name": "npmRegistryUrl",
|
|
9763
9781
|
"type": {
|
|
@@ -9772,7 +9790,7 @@
|
|
|
9772
9790
|
"immutable": true,
|
|
9773
9791
|
"locationInModule": {
|
|
9774
9792
|
"filename": "src/node-package.ts",
|
|
9775
|
-
"line":
|
|
9793
|
+
"line": 343
|
|
9776
9794
|
},
|
|
9777
9795
|
"name": "packageManager",
|
|
9778
9796
|
"type": {
|
|
@@ -9787,7 +9805,7 @@
|
|
|
9787
9805
|
"immutable": true,
|
|
9788
9806
|
"locationInModule": {
|
|
9789
9807
|
"filename": "src/node-package.ts",
|
|
9790
|
-
"line":
|
|
9808
|
+
"line": 328
|
|
9791
9809
|
},
|
|
9792
9810
|
"name": "packageName",
|
|
9793
9811
|
"type": {
|
|
@@ -9802,7 +9820,7 @@
|
|
|
9802
9820
|
"immutable": true,
|
|
9803
9821
|
"locationInModule": {
|
|
9804
9822
|
"filename": "src/node-package.ts",
|
|
9805
|
-
"line":
|
|
9823
|
+
"line": 719
|
|
9806
9824
|
},
|
|
9807
9825
|
"name": "projenCommand",
|
|
9808
9826
|
"type": {
|
|
@@ -9818,7 +9836,7 @@
|
|
|
9818
9836
|
"immutable": true,
|
|
9819
9837
|
"locationInModule": {
|
|
9820
9838
|
"filename": "src/node-package.ts",
|
|
9821
|
-
"line":
|
|
9839
|
+
"line": 392
|
|
9822
9840
|
},
|
|
9823
9841
|
"name": "codeArtifactOptions",
|
|
9824
9842
|
"optional": true,
|
|
@@ -9835,7 +9853,7 @@
|
|
|
9835
9853
|
"immutable": true,
|
|
9836
9854
|
"locationInModule": {
|
|
9837
9855
|
"filename": "src/node-package.ts",
|
|
9838
|
-
"line":
|
|
9856
|
+
"line": 365
|
|
9839
9857
|
},
|
|
9840
9858
|
"name": "license",
|
|
9841
9859
|
"optional": true,
|
|
@@ -9852,7 +9870,7 @@
|
|
|
9852
9870
|
"immutable": true,
|
|
9853
9871
|
"locationInModule": {
|
|
9854
9872
|
"filename": "src/node-package.ts",
|
|
9855
|
-
"line":
|
|
9873
|
+
"line": 360
|
|
9856
9874
|
},
|
|
9857
9875
|
"name": "maxNodeVersion",
|
|
9858
9876
|
"optional": true,
|
|
@@ -9869,7 +9887,7 @@
|
|
|
9869
9887
|
"immutable": true,
|
|
9870
9888
|
"locationInModule": {
|
|
9871
9889
|
"filename": "src/node-package.ts",
|
|
9872
|
-
"line":
|
|
9890
|
+
"line": 354
|
|
9873
9891
|
},
|
|
9874
9892
|
"name": "minNodeVersion",
|
|
9875
9893
|
"optional": true,
|
|
@@ -9885,7 +9903,7 @@
|
|
|
9885
9903
|
"immutable": true,
|
|
9886
9904
|
"locationInModule": {
|
|
9887
9905
|
"filename": "src/node-package.ts",
|
|
9888
|
-
"line":
|
|
9906
|
+
"line": 385
|
|
9889
9907
|
},
|
|
9890
9908
|
"name": "npmTokenSecret",
|
|
9891
9909
|
"optional": true,
|
|
@@ -9906,7 +9924,7 @@
|
|
|
9906
9924
|
"kind": "enum",
|
|
9907
9925
|
"locationInModule": {
|
|
9908
9926
|
"filename": "src/node-package.ts",
|
|
9909
|
-
"line":
|
|
9927
|
+
"line": 1093
|
|
9910
9928
|
},
|
|
9911
9929
|
"members": [
|
|
9912
9930
|
{
|
|
@@ -10614,7 +10632,7 @@
|
|
|
10614
10632
|
},
|
|
10615
10633
|
"locationInModule": {
|
|
10616
10634
|
"filename": "src/node-project.ts",
|
|
10617
|
-
"line":
|
|
10635
|
+
"line": 740
|
|
10618
10636
|
},
|
|
10619
10637
|
"name": "addBins",
|
|
10620
10638
|
"parameters": [
|
|
@@ -10639,7 +10657,7 @@
|
|
|
10639
10657
|
},
|
|
10640
10658
|
"locationInModule": {
|
|
10641
10659
|
"filename": "src/node-project.ts",
|
|
10642
|
-
"line":
|
|
10660
|
+
"line": 893
|
|
10643
10661
|
},
|
|
10644
10662
|
"name": "addBundledDeps",
|
|
10645
10663
|
"parameters": [
|
|
@@ -10665,7 +10683,7 @@
|
|
|
10665
10683
|
},
|
|
10666
10684
|
"locationInModule": {
|
|
10667
10685
|
"filename": "src/node-project.ts",
|
|
10668
|
-
"line":
|
|
10686
|
+
"line": 774
|
|
10669
10687
|
},
|
|
10670
10688
|
"name": "addCompileCommand",
|
|
10671
10689
|
"parameters": [
|
|
@@ -10686,7 +10704,7 @@
|
|
|
10686
10704
|
},
|
|
10687
10705
|
"locationInModule": {
|
|
10688
10706
|
"filename": "src/node-project.ts",
|
|
10689
|
-
"line":
|
|
10707
|
+
"line": 847
|
|
10690
10708
|
},
|
|
10691
10709
|
"name": "addDeps",
|
|
10692
10710
|
"parameters": [
|
|
@@ -10711,7 +10729,7 @@
|
|
|
10711
10729
|
},
|
|
10712
10730
|
"locationInModule": {
|
|
10713
10731
|
"filename": "src/node-project.ts",
|
|
10714
|
-
"line":
|
|
10732
|
+
"line": 860
|
|
10715
10733
|
},
|
|
10716
10734
|
"name": "addDevDeps",
|
|
10717
10735
|
"parameters": [
|
|
@@ -10736,7 +10754,7 @@
|
|
|
10736
10754
|
},
|
|
10737
10755
|
"locationInModule": {
|
|
10738
10756
|
"filename": "src/node-project.ts",
|
|
10739
|
-
"line":
|
|
10757
|
+
"line": 794
|
|
10740
10758
|
},
|
|
10741
10759
|
"name": "addFields",
|
|
10742
10760
|
"parameters": [
|
|
@@ -10763,7 +10781,7 @@
|
|
|
10763
10781
|
},
|
|
10764
10782
|
"locationInModule": {
|
|
10765
10783
|
"filename": "src/node-project.ts",
|
|
10766
|
-
"line":
|
|
10784
|
+
"line": 804
|
|
10767
10785
|
},
|
|
10768
10786
|
"name": "addKeywords",
|
|
10769
10787
|
"parameters": [
|
|
@@ -10788,7 +10806,7 @@
|
|
|
10788
10806
|
},
|
|
10789
10807
|
"locationInModule": {
|
|
10790
10808
|
"filename": "src/node-project.ts",
|
|
10791
|
-
"line":
|
|
10809
|
+
"line": 897
|
|
10792
10810
|
},
|
|
10793
10811
|
"name": "addPackageIgnore",
|
|
10794
10812
|
"overrides": "projen.Project",
|
|
@@ -10809,7 +10827,7 @@
|
|
|
10809
10827
|
},
|
|
10810
10828
|
"locationInModule": {
|
|
10811
10829
|
"filename": "src/node-project.ts",
|
|
10812
|
-
"line":
|
|
10830
|
+
"line": 877
|
|
10813
10831
|
},
|
|
10814
10832
|
"name": "addPeerDeps",
|
|
10815
10833
|
"parameters": [
|
|
@@ -10835,7 +10853,7 @@
|
|
|
10835
10853
|
},
|
|
10836
10854
|
"locationInModule": {
|
|
10837
10855
|
"filename": "src/node-project.ts",
|
|
10838
|
-
"line":
|
|
10856
|
+
"line": 784
|
|
10839
10857
|
},
|
|
10840
10858
|
"name": "addTestCommand",
|
|
10841
10859
|
"parameters": [
|
|
@@ -10856,7 +10874,7 @@
|
|
|
10856
10874
|
},
|
|
10857
10875
|
"locationInModule": {
|
|
10858
10876
|
"filename": "src/node-project.ts",
|
|
10859
|
-
"line":
|
|
10877
|
+
"line": 766
|
|
10860
10878
|
},
|
|
10861
10879
|
"name": "hasScript",
|
|
10862
10880
|
"parameters": [
|
|
@@ -10883,7 +10901,7 @@
|
|
|
10883
10901
|
},
|
|
10884
10902
|
"locationInModule": {
|
|
10885
10903
|
"filename": "src/node-project.ts",
|
|
10886
|
-
"line":
|
|
10904
|
+
"line": 758
|
|
10887
10905
|
},
|
|
10888
10906
|
"name": "removeScript",
|
|
10889
10907
|
"parameters": [
|
|
@@ -10906,7 +10924,7 @@
|
|
|
10906
10924
|
},
|
|
10907
10925
|
"locationInModule": {
|
|
10908
10926
|
"filename": "src/node-project.ts",
|
|
10909
|
-
"line":
|
|
10927
|
+
"line": 971
|
|
10910
10928
|
},
|
|
10911
10929
|
"name": "runTaskCommand",
|
|
10912
10930
|
"overrides": "projen.Project",
|
|
@@ -10934,7 +10952,7 @@
|
|
|
10934
10952
|
},
|
|
10935
10953
|
"locationInModule": {
|
|
10936
10954
|
"filename": "src/node-project.ts",
|
|
10937
|
-
"line":
|
|
10955
|
+
"line": 750
|
|
10938
10956
|
},
|
|
10939
10957
|
"name": "setScript",
|
|
10940
10958
|
"parameters": [
|
|
@@ -11027,7 +11045,7 @@
|
|
|
11027
11045
|
"immutable": true,
|
|
11028
11046
|
"locationInModule": {
|
|
11029
11047
|
"filename": "src/node-project.ts",
|
|
11030
|
-
"line":
|
|
11048
|
+
"line": 808
|
|
11031
11049
|
},
|
|
11032
11050
|
"name": "installWorkflowSteps",
|
|
11033
11051
|
"type": {
|
|
@@ -11387,7 +11405,7 @@
|
|
|
11387
11405
|
"name": "bundlerOptions",
|
|
11388
11406
|
"optional": true,
|
|
11389
11407
|
"type": {
|
|
11390
|
-
"fqn": "projen.javascript.
|
|
11408
|
+
"fqn": "projen.javascript.BundlerOptions"
|
|
11391
11409
|
}
|
|
11392
11410
|
},
|
|
11393
11411
|
{
|
|
@@ -11959,7 +11977,7 @@
|
|
|
11959
11977
|
"kind": "interface",
|
|
11960
11978
|
"locationInModule": {
|
|
11961
11979
|
"filename": "src/node-project.ts",
|
|
11962
|
-
"line":
|
|
11980
|
+
"line": 976
|
|
11963
11981
|
},
|
|
11964
11982
|
"name": "NodeWorkflowSteps",
|
|
11965
11983
|
"properties": [
|
|
@@ -11971,7 +11989,7 @@
|
|
|
11971
11989
|
"immutable": true,
|
|
11972
11990
|
"locationInModule": {
|
|
11973
11991
|
"filename": "src/node-project.ts",
|
|
11974
|
-
"line":
|
|
11992
|
+
"line": 977
|
|
11975
11993
|
},
|
|
11976
11994
|
"name": "antitamper",
|
|
11977
11995
|
"type": {
|
|
@@ -11991,7 +12009,7 @@
|
|
|
11991
12009
|
"immutable": true,
|
|
11992
12010
|
"locationInModule": {
|
|
11993
12011
|
"filename": "src/node-project.ts",
|
|
11994
|
-
"line":
|
|
12012
|
+
"line": 978
|
|
11995
12013
|
},
|
|
11996
12014
|
"name": "install",
|
|
11997
12015
|
"type": {
|
|
@@ -12016,7 +12034,7 @@
|
|
|
12016
12034
|
"kind": "enum",
|
|
12017
12035
|
"locationInModule": {
|
|
12018
12036
|
"filename": "src/node-package.ts",
|
|
12019
|
-
"line":
|
|
12037
|
+
"line": 1113
|
|
12020
12038
|
},
|
|
12021
12039
|
"members": [
|
|
12022
12040
|
{
|
|
@@ -12285,7 +12303,7 @@
|
|
|
12285
12303
|
"kind": "interface",
|
|
12286
12304
|
"locationInModule": {
|
|
12287
12305
|
"filename": "src/node-package.ts",
|
|
12288
|
-
"line":
|
|
12306
|
+
"line": 1082
|
|
12289
12307
|
},
|
|
12290
12308
|
"name": "PeerDependencyOptions",
|
|
12291
12309
|
"properties": [
|
|
@@ -12299,7 +12317,7 @@
|
|
|
12299
12317
|
"immutable": true,
|
|
12300
12318
|
"locationInModule": {
|
|
12301
12319
|
"filename": "src/node-package.ts",
|
|
12302
|
-
"line":
|
|
12320
|
+
"line": 1087
|
|
12303
12321
|
},
|
|
12304
12322
|
"name": "pinnedDevDependency",
|
|
12305
12323
|
"optional": true,
|
|
@@ -13305,7 +13323,7 @@
|
|
|
13305
13323
|
"kind": "enum",
|
|
13306
13324
|
"locationInModule": {
|
|
13307
13325
|
"filename": "src/project.ts",
|
|
13308
|
-
"line":
|
|
13326
|
+
"line": 512
|
|
13309
13327
|
},
|
|
13310
13328
|
"members": [
|
|
13311
13329
|
{
|
|
@@ -17169,7 +17187,7 @@
|
|
|
17169
17187
|
},
|
|
17170
17188
|
"locationInModule": {
|
|
17171
17189
|
"filename": "src/awscdk/auto-discover.ts",
|
|
17172
|
-
"line":
|
|
17190
|
+
"line": 30
|
|
17173
17191
|
},
|
|
17174
17192
|
"parameters": [
|
|
17175
17193
|
{
|
|
@@ -17189,22 +17207,8 @@
|
|
|
17189
17207
|
"kind": "class",
|
|
17190
17208
|
"locationInModule": {
|
|
17191
17209
|
"filename": "src/awscdk/auto-discover.ts",
|
|
17192
|
-
"line":
|
|
17210
|
+
"line": 27
|
|
17193
17211
|
},
|
|
17194
|
-
"methods": [
|
|
17195
|
-
{
|
|
17196
|
-
"docs": {
|
|
17197
|
-
"stability": "experimental",
|
|
17198
|
-
"summary": "Called before synthesis."
|
|
17199
|
-
},
|
|
17200
|
-
"locationInModule": {
|
|
17201
|
-
"filename": "src/awscdk/auto-discover.ts",
|
|
17202
|
-
"line": 41
|
|
17203
|
-
},
|
|
17204
|
-
"name": "preSynthesize",
|
|
17205
|
-
"overrides": "projen.Component"
|
|
17206
|
-
}
|
|
17207
|
-
],
|
|
17208
17212
|
"name": "AutoDiscover",
|
|
17209
17213
|
"namespace": "awscdk",
|
|
17210
17214
|
"symbolId": "src/awscdk/auto-discover:AutoDiscover"
|
|
@@ -17225,22 +17229,6 @@
|
|
|
17225
17229
|
"name": "AutoDiscoverOptions",
|
|
17226
17230
|
"namespace": "awscdk",
|
|
17227
17231
|
"properties": [
|
|
17228
|
-
{
|
|
17229
|
-
"abstract": true,
|
|
17230
|
-
"docs": {
|
|
17231
|
-
"stability": "experimental",
|
|
17232
|
-
"summary": "Output directory (where .js files go)."
|
|
17233
|
-
},
|
|
17234
|
-
"immutable": true,
|
|
17235
|
-
"locationInModule": {
|
|
17236
|
-
"filename": "src/awscdk/auto-discover.ts",
|
|
17237
|
-
"line": 25
|
|
17238
|
-
},
|
|
17239
|
-
"name": "libdir",
|
|
17240
|
-
"type": {
|
|
17241
|
-
"primitive": "string"
|
|
17242
|
-
}
|
|
17243
|
-
},
|
|
17244
17232
|
{
|
|
17245
17233
|
"abstract": true,
|
|
17246
17234
|
"docs": {
|
|
@@ -17821,7 +17809,7 @@
|
|
|
17821
17809
|
"assembly": "projen",
|
|
17822
17810
|
"base": "projen.Component",
|
|
17823
17811
|
"docs": {
|
|
17824
|
-
"example": "new LambdaFunction(myProject, {\n entrypoint: 'src/foo.lambda.ts',\n
|
|
17812
|
+
"example": "new LambdaFunction(myProject, {\n srcdir: myProject.srcdir,\n entrypoint: 'src/foo.lambda.ts',\n});",
|
|
17825
17813
|
"remarks": "To use this, create an AWS Lambda handler file under your source tree with\nthe `.lambda.ts` extension and add a `LambdaFunction` component to your\ntypescript project pointing to this entrypoint.\n\nThis will add a task to your \"compile\" step which will use `esbuild` to\nbundle the handler code into the build directory. It will also generate a\nfile `src/foo-function.ts` with a custom AWS construct called `FooFunction`\nwhich extends `@aws-cdk/aws-lambda.Function` which is bound to the bundled\nhandle through an asset.",
|
|
17826
17814
|
"stability": "experimental",
|
|
17827
17815
|
"summary": "Generates a pre-bundled AWS Lambda function construct from handler code."
|
|
@@ -17834,7 +17822,7 @@
|
|
|
17834
17822
|
},
|
|
17835
17823
|
"locationInModule": {
|
|
17836
17824
|
"filename": "src/awscdk/lambda-function.ts",
|
|
17837
|
-
"line":
|
|
17825
|
+
"line": 92
|
|
17838
17826
|
},
|
|
17839
17827
|
"parameters": [
|
|
17840
17828
|
{
|
|
@@ -17860,27 +17848,10 @@
|
|
|
17860
17848
|
"kind": "class",
|
|
17861
17849
|
"locationInModule": {
|
|
17862
17850
|
"filename": "src/awscdk/lambda-function.ts",
|
|
17863
|
-
"line":
|
|
17851
|
+
"line": 85
|
|
17864
17852
|
},
|
|
17865
17853
|
"name": "LambdaFunction",
|
|
17866
17854
|
"namespace": "awscdk",
|
|
17867
|
-
"properties": [
|
|
17868
|
-
{
|
|
17869
|
-
"docs": {
|
|
17870
|
-
"stability": "experimental",
|
|
17871
|
-
"summary": "The bundle task for this function."
|
|
17872
|
-
},
|
|
17873
|
-
"immutable": true,
|
|
17874
|
-
"locationInModule": {
|
|
17875
|
-
"filename": "src/awscdk/lambda-function.ts",
|
|
17876
|
-
"line": 95
|
|
17877
|
-
},
|
|
17878
|
-
"name": "bundleTask",
|
|
17879
|
-
"type": {
|
|
17880
|
-
"fqn": "projen.tasks.Task"
|
|
17881
|
-
}
|
|
17882
|
-
}
|
|
17883
|
-
],
|
|
17884
17855
|
"symbolId": "src/awscdk/lambda-function:LambdaFunction"
|
|
17885
17856
|
},
|
|
17886
17857
|
"projen.awscdk.LambdaFunctionCommonOptions": {
|
|
@@ -17895,7 +17866,7 @@
|
|
|
17895
17866
|
"kind": "interface",
|
|
17896
17867
|
"locationInModule": {
|
|
17897
17868
|
"filename": "src/awscdk/lambda-function.ts",
|
|
17898
|
-
"line":
|
|
17869
|
+
"line": 14
|
|
17899
17870
|
},
|
|
17900
17871
|
"name": "LambdaFunctionCommonOptions",
|
|
17901
17872
|
"namespace": "awscdk",
|
|
@@ -17903,24 +17874,20 @@
|
|
|
17903
17874
|
{
|
|
17904
17875
|
"abstract": true,
|
|
17905
17876
|
"docs": {
|
|
17906
|
-
"default": "-
|
|
17877
|
+
"default": "- defaults",
|
|
17878
|
+
"remarks": "If not specified the default bundling options specified for the project\n`Bundler` instance will be used.",
|
|
17907
17879
|
"stability": "experimental",
|
|
17908
|
-
"summary": "
|
|
17880
|
+
"summary": "Bundling options for this AWS Lambda function."
|
|
17909
17881
|
},
|
|
17910
17882
|
"immutable": true,
|
|
17911
17883
|
"locationInModule": {
|
|
17912
17884
|
"filename": "src/awscdk/lambda-function.ts",
|
|
17913
17885
|
"line": 30
|
|
17914
17886
|
},
|
|
17915
|
-
"name": "
|
|
17887
|
+
"name": "bundlingOptions",
|
|
17916
17888
|
"optional": true,
|
|
17917
17889
|
"type": {
|
|
17918
|
-
"
|
|
17919
|
-
"elementtype": {
|
|
17920
|
-
"primitive": "string"
|
|
17921
|
-
},
|
|
17922
|
-
"kind": "array"
|
|
17923
|
-
}
|
|
17890
|
+
"fqn": "projen.javascript.BundlingOptions"
|
|
17924
17891
|
}
|
|
17925
17892
|
},
|
|
17926
17893
|
{
|
|
@@ -17933,7 +17900,7 @@
|
|
|
17933
17900
|
"immutable": true,
|
|
17934
17901
|
"locationInModule": {
|
|
17935
17902
|
"filename": "src/awscdk/lambda-function.ts",
|
|
17936
|
-
"line":
|
|
17903
|
+
"line": 20
|
|
17937
17904
|
},
|
|
17938
17905
|
"name": "runtime",
|
|
17939
17906
|
"optional": true,
|
|
@@ -17966,62 +17933,33 @@
|
|
|
17966
17933
|
{
|
|
17967
17934
|
"abstract": true,
|
|
17968
17935
|
"docs": {
|
|
17936
|
+
"example": "\"src/subdir/foo.lambda.ts\"",
|
|
17937
|
+
"remarks": "This is relative to the root directory of the project.",
|
|
17969
17938
|
"stability": "experimental",
|
|
17970
17939
|
"summary": "A path from the project root directory to a TypeScript file which contains the AWS Lambda handler entrypoint (exports a `handler` function)."
|
|
17971
17940
|
},
|
|
17972
17941
|
"immutable": true,
|
|
17973
17942
|
"locationInModule": {
|
|
17974
17943
|
"filename": "src/awscdk/lambda-function.ts",
|
|
17975
|
-
"line":
|
|
17944
|
+
"line": 45
|
|
17976
17945
|
},
|
|
17977
17946
|
"name": "entrypoint",
|
|
17978
17947
|
"type": {
|
|
17979
17948
|
"primitive": "string"
|
|
17980
17949
|
}
|
|
17981
17950
|
},
|
|
17982
|
-
{
|
|
17983
|
-
"abstract": true,
|
|
17984
|
-
"docs": {
|
|
17985
|
-
"stability": "experimental",
|
|
17986
|
-
"summary": "JavaScript output directory (where .js files go)."
|
|
17987
|
-
},
|
|
17988
|
-
"immutable": true,
|
|
17989
|
-
"locationInModule": {
|
|
17990
|
-
"filename": "src/awscdk/lambda-function.ts",
|
|
17991
|
-
"line": 67
|
|
17992
|
-
},
|
|
17993
|
-
"name": "libdir",
|
|
17994
|
-
"type": {
|
|
17995
|
-
"primitive": "string"
|
|
17996
|
-
}
|
|
17997
|
-
},
|
|
17998
|
-
{
|
|
17999
|
-
"abstract": true,
|
|
18000
|
-
"docs": {
|
|
18001
|
-
"stability": "experimental",
|
|
18002
|
-
"summary": "Project source directory tree (where .ts files live)."
|
|
18003
|
-
},
|
|
18004
|
-
"immutable": true,
|
|
18005
|
-
"locationInModule": {
|
|
18006
|
-
"filename": "src/awscdk/lambda-function.ts",
|
|
18007
|
-
"line": 62
|
|
18008
|
-
},
|
|
18009
|
-
"name": "srcdir",
|
|
18010
|
-
"type": {
|
|
18011
|
-
"primitive": "string"
|
|
18012
|
-
}
|
|
18013
|
-
},
|
|
18014
17951
|
{
|
|
18015
17952
|
"abstract": true,
|
|
18016
17953
|
"docs": {
|
|
18017
17954
|
"default": "- The name of the entrypoint file, with the `-function.ts` suffix\ninstead of `.lambda.ts`.",
|
|
17955
|
+
"remarks": "This file should also be\nunder the source tree.",
|
|
18018
17956
|
"stability": "experimental",
|
|
18019
17957
|
"summary": "The name of the generated TypeScript source file."
|
|
18020
17958
|
},
|
|
18021
17959
|
"immutable": true,
|
|
18022
17960
|
"locationInModule": {
|
|
18023
17961
|
"filename": "src/awscdk/lambda-function.ts",
|
|
18024
|
-
"line":
|
|
17962
|
+
"line": 54
|
|
18025
17963
|
},
|
|
18026
17964
|
"name": "constructFile",
|
|
18027
17965
|
"optional": true,
|
|
@@ -18039,7 +17977,7 @@
|
|
|
18039
17977
|
"immutable": true,
|
|
18040
17978
|
"locationInModule": {
|
|
18041
17979
|
"filename": "src/awscdk/lambda-function.ts",
|
|
18042
|
-
"line":
|
|
17980
|
+
"line": 62
|
|
18043
17981
|
},
|
|
18044
17982
|
"name": "constructName",
|
|
18045
17983
|
"optional": true,
|
|
@@ -18060,7 +17998,7 @@
|
|
|
18060
17998
|
"kind": "class",
|
|
18061
17999
|
"locationInModule": {
|
|
18062
18000
|
"filename": "src/awscdk/lambda-function.ts",
|
|
18063
|
-
"line":
|
|
18001
|
+
"line": 179
|
|
18064
18002
|
},
|
|
18065
18003
|
"name": "LambdaRuntime",
|
|
18066
18004
|
"namespace": "awscdk",
|
|
@@ -18074,7 +18012,7 @@
|
|
|
18074
18012
|
"immutable": true,
|
|
18075
18013
|
"locationInModule": {
|
|
18076
18014
|
"filename": "src/awscdk/lambda-function.ts",
|
|
18077
|
-
"line":
|
|
18015
|
+
"line": 183
|
|
18078
18016
|
},
|
|
18079
18017
|
"name": "NODEJS_10_X",
|
|
18080
18018
|
"static": true,
|
|
@@ -18091,7 +18029,7 @@
|
|
|
18091
18029
|
"immutable": true,
|
|
18092
18030
|
"locationInModule": {
|
|
18093
18031
|
"filename": "src/awscdk/lambda-function.ts",
|
|
18094
|
-
"line":
|
|
18032
|
+
"line": 188
|
|
18095
18033
|
},
|
|
18096
18034
|
"name": "NODEJS_12_X",
|
|
18097
18035
|
"static": true,
|
|
@@ -18108,7 +18046,7 @@
|
|
|
18108
18046
|
"immutable": true,
|
|
18109
18047
|
"locationInModule": {
|
|
18110
18048
|
"filename": "src/awscdk/lambda-function.ts",
|
|
18111
|
-
"line":
|
|
18049
|
+
"line": 193
|
|
18112
18050
|
},
|
|
18113
18051
|
"name": "NODEJS_14_X",
|
|
18114
18052
|
"static": true,
|
|
@@ -18123,7 +18061,7 @@
|
|
|
18123
18061
|
"immutable": true,
|
|
18124
18062
|
"locationInModule": {
|
|
18125
18063
|
"filename": "src/awscdk/lambda-function.ts",
|
|
18126
|
-
"line":
|
|
18064
|
+
"line": 195
|
|
18127
18065
|
},
|
|
18128
18066
|
"name": "esbuildPlatform",
|
|
18129
18067
|
"type": {
|
|
@@ -18138,7 +18076,7 @@
|
|
|
18138
18076
|
"immutable": true,
|
|
18139
18077
|
"locationInModule": {
|
|
18140
18078
|
"filename": "src/awscdk/lambda-function.ts",
|
|
18141
|
-
"line":
|
|
18079
|
+
"line": 206
|
|
18142
18080
|
},
|
|
18143
18081
|
"name": "esbuildTarget",
|
|
18144
18082
|
"type": {
|
|
@@ -18153,7 +18091,7 @@
|
|
|
18153
18091
|
"immutable": true,
|
|
18154
18092
|
"locationInModule": {
|
|
18155
18093
|
"filename": "src/awscdk/lambda-function.ts",
|
|
18156
|
-
"line":
|
|
18094
|
+
"line": 201
|
|
18157
18095
|
},
|
|
18158
18096
|
"name": "functionRuntime",
|
|
18159
18097
|
"type": {
|
|
@@ -19581,7 +19519,7 @@
|
|
|
19581
19519
|
},
|
|
19582
19520
|
"locationInModule": {
|
|
19583
19521
|
"filename": "src/github/github.ts",
|
|
19584
|
-
"line":
|
|
19522
|
+
"line": 61
|
|
19585
19523
|
},
|
|
19586
19524
|
"parameters": [
|
|
19587
19525
|
{
|
|
@@ -19602,7 +19540,7 @@
|
|
|
19602
19540
|
"kind": "class",
|
|
19603
19541
|
"locationInModule": {
|
|
19604
19542
|
"filename": "src/github/github.ts",
|
|
19605
|
-
"line":
|
|
19543
|
+
"line": 47
|
|
19606
19544
|
},
|
|
19607
19545
|
"methods": [
|
|
19608
19546
|
{
|
|
@@ -19611,7 +19549,7 @@
|
|
|
19611
19549
|
},
|
|
19612
19550
|
"locationInModule": {
|
|
19613
19551
|
"filename": "src/github/github.ts",
|
|
19614
|
-
"line":
|
|
19552
|
+
"line": 101
|
|
19615
19553
|
},
|
|
19616
19554
|
"name": "addDependabot",
|
|
19617
19555
|
"parameters": [
|
|
@@ -19635,7 +19573,7 @@
|
|
|
19635
19573
|
},
|
|
19636
19574
|
"locationInModule": {
|
|
19637
19575
|
"filename": "src/github/github.ts",
|
|
19638
|
-
"line":
|
|
19576
|
+
"line": 97
|
|
19639
19577
|
},
|
|
19640
19578
|
"name": "addPullRequestTemplate",
|
|
19641
19579
|
"parameters": [
|
|
@@ -19662,7 +19600,7 @@
|
|
|
19662
19600
|
},
|
|
19663
19601
|
"locationInModule": {
|
|
19664
19602
|
"filename": "src/github/github.ts",
|
|
19665
|
-
"line":
|
|
19603
|
+
"line": 88
|
|
19666
19604
|
},
|
|
19667
19605
|
"name": "addWorkflow",
|
|
19668
19606
|
"parameters": [
|
|
@@ -19690,7 +19628,7 @@
|
|
|
19690
19628
|
},
|
|
19691
19629
|
"locationInModule": {
|
|
19692
19630
|
"filename": "src/github/github.ts",
|
|
19693
|
-
"line":
|
|
19631
|
+
"line": 109
|
|
19694
19632
|
},
|
|
19695
19633
|
"name": "tryFindWorkflow",
|
|
19696
19634
|
"parameters": [
|
|
@@ -19723,7 +19661,7 @@
|
|
|
19723
19661
|
"immutable": true,
|
|
19724
19662
|
"locationInModule": {
|
|
19725
19663
|
"filename": "src/github/github.ts",
|
|
19726
|
-
"line":
|
|
19664
|
+
"line": 79
|
|
19727
19665
|
},
|
|
19728
19666
|
"name": "workflows",
|
|
19729
19667
|
"type": {
|
|
@@ -19743,7 +19681,7 @@
|
|
|
19743
19681
|
"immutable": true,
|
|
19744
19682
|
"locationInModule": {
|
|
19745
19683
|
"filename": "src/github/github.ts",
|
|
19746
|
-
"line":
|
|
19684
|
+
"line": 57
|
|
19747
19685
|
},
|
|
19748
19686
|
"name": "workflowsEnabled",
|
|
19749
19687
|
"type": {
|
|
@@ -19759,7 +19697,7 @@
|
|
|
19759
19697
|
"immutable": true,
|
|
19760
19698
|
"locationInModule": {
|
|
19761
19699
|
"filename": "src/github/github.ts",
|
|
19762
|
-
"line":
|
|
19700
|
+
"line": 52
|
|
19763
19701
|
},
|
|
19764
19702
|
"name": "mergify",
|
|
19765
19703
|
"optional": true,
|
|
@@ -19780,7 +19718,7 @@
|
|
|
19780
19718
|
"kind": "interface",
|
|
19781
19719
|
"locationInModule": {
|
|
19782
19720
|
"filename": "src/github/github.ts",
|
|
19783
|
-
"line":
|
|
19721
|
+
"line": 9
|
|
19784
19722
|
},
|
|
19785
19723
|
"name": "GitHubOptions",
|
|
19786
19724
|
"namespace": "github",
|
|
@@ -19795,7 +19733,7 @@
|
|
|
19795
19733
|
"immutable": true,
|
|
19796
19734
|
"locationInModule": {
|
|
19797
19735
|
"filename": "src/github/github.ts",
|
|
19798
|
-
"line":
|
|
19736
|
+
"line": 15
|
|
19799
19737
|
},
|
|
19800
19738
|
"name": "mergify",
|
|
19801
19739
|
"optional": true,
|
|
@@ -19813,7 +19751,7 @@
|
|
|
19813
19751
|
"immutable": true,
|
|
19814
19752
|
"locationInModule": {
|
|
19815
19753
|
"filename": "src/github/github.ts",
|
|
19816
|
-
"line":
|
|
19754
|
+
"line": 22
|
|
19817
19755
|
},
|
|
19818
19756
|
"name": "mergifyOptions",
|
|
19819
19757
|
"optional": true,
|
|
@@ -19821,6 +19759,42 @@
|
|
|
19821
19759
|
"fqn": "projen.github.MergifyOptions"
|
|
19822
19760
|
}
|
|
19823
19761
|
},
|
|
19762
|
+
{
|
|
19763
|
+
"abstract": true,
|
|
19764
|
+
"docs": {
|
|
19765
|
+
"default": "true",
|
|
19766
|
+
"stability": "experimental",
|
|
19767
|
+
"summary": "Add a workflow that performs basic checks for pull requests, like validating that PRs follow Conventional Commits."
|
|
19768
|
+
},
|
|
19769
|
+
"immutable": true,
|
|
19770
|
+
"locationInModule": {
|
|
19771
|
+
"filename": "src/github/github.ts",
|
|
19772
|
+
"line": 37
|
|
19773
|
+
},
|
|
19774
|
+
"name": "pullRequestLint",
|
|
19775
|
+
"optional": true,
|
|
19776
|
+
"type": {
|
|
19777
|
+
"primitive": "boolean"
|
|
19778
|
+
}
|
|
19779
|
+
},
|
|
19780
|
+
{
|
|
19781
|
+
"abstract": true,
|
|
19782
|
+
"docs": {
|
|
19783
|
+
"default": "- see defaults in `PullRequestLintOptions`",
|
|
19784
|
+
"stability": "experimental",
|
|
19785
|
+
"summary": "Options for configuring a pull request linter."
|
|
19786
|
+
},
|
|
19787
|
+
"immutable": true,
|
|
19788
|
+
"locationInModule": {
|
|
19789
|
+
"filename": "src/github/github.ts",
|
|
19790
|
+
"line": 44
|
|
19791
|
+
},
|
|
19792
|
+
"name": "pullRequestLintOptions",
|
|
19793
|
+
"optional": true,
|
|
19794
|
+
"type": {
|
|
19795
|
+
"fqn": "projen.github.PullRequestLintOptions"
|
|
19796
|
+
}
|
|
19797
|
+
},
|
|
19824
19798
|
{
|
|
19825
19799
|
"abstract": true,
|
|
19826
19800
|
"docs": {
|
|
@@ -19832,7 +19806,7 @@
|
|
|
19832
19806
|
"immutable": true,
|
|
19833
19807
|
"locationInModule": {
|
|
19834
19808
|
"filename": "src/github/github.ts",
|
|
19835
|
-
"line":
|
|
19809
|
+
"line": 29
|
|
19836
19810
|
},
|
|
19837
19811
|
"name": "workflows",
|
|
19838
19812
|
"optional": true,
|
|
@@ -20369,6 +20343,104 @@
|
|
|
20369
20343
|
],
|
|
20370
20344
|
"symbolId": "src/github/mergify:MergifyRule"
|
|
20371
20345
|
},
|
|
20346
|
+
"projen.github.PullRequestLint": {
|
|
20347
|
+
"assembly": "projen",
|
|
20348
|
+
"base": "projen.Component",
|
|
20349
|
+
"docs": {
|
|
20350
|
+
"remarks": "Only generates a file if at least one linter is configured.",
|
|
20351
|
+
"stability": "experimental",
|
|
20352
|
+
"summary": "Configure validations to run on GitHub pull requests."
|
|
20353
|
+
},
|
|
20354
|
+
"fqn": "projen.github.PullRequestLint",
|
|
20355
|
+
"initializer": {
|
|
20356
|
+
"docs": {
|
|
20357
|
+
"stability": "experimental"
|
|
20358
|
+
},
|
|
20359
|
+
"locationInModule": {
|
|
20360
|
+
"filename": "src/github/pull-request-lint.ts",
|
|
20361
|
+
"line": 48
|
|
20362
|
+
},
|
|
20363
|
+
"parameters": [
|
|
20364
|
+
{
|
|
20365
|
+
"name": "github",
|
|
20366
|
+
"type": {
|
|
20367
|
+
"fqn": "projen.github.GitHub"
|
|
20368
|
+
}
|
|
20369
|
+
},
|
|
20370
|
+
{
|
|
20371
|
+
"name": "options",
|
|
20372
|
+
"optional": true,
|
|
20373
|
+
"type": {
|
|
20374
|
+
"fqn": "projen.github.PullRequestLintOptions"
|
|
20375
|
+
}
|
|
20376
|
+
}
|
|
20377
|
+
]
|
|
20378
|
+
},
|
|
20379
|
+
"kind": "class",
|
|
20380
|
+
"locationInModule": {
|
|
20381
|
+
"filename": "src/github/pull-request-lint.ts",
|
|
20382
|
+
"line": 47
|
|
20383
|
+
},
|
|
20384
|
+
"name": "PullRequestLint",
|
|
20385
|
+
"namespace": "github",
|
|
20386
|
+
"symbolId": "src/github/pull-request-lint:PullRequestLint"
|
|
20387
|
+
},
|
|
20388
|
+
"projen.github.PullRequestLintOptions": {
|
|
20389
|
+
"assembly": "projen",
|
|
20390
|
+
"datatype": true,
|
|
20391
|
+
"docs": {
|
|
20392
|
+
"stability": "experimental",
|
|
20393
|
+
"summary": "Options for PullRequestLint."
|
|
20394
|
+
},
|
|
20395
|
+
"fqn": "projen.github.PullRequestLintOptions",
|
|
20396
|
+
"kind": "interface",
|
|
20397
|
+
"locationInModule": {
|
|
20398
|
+
"filename": "src/github/pull-request-lint.ts",
|
|
20399
|
+
"line": 8
|
|
20400
|
+
},
|
|
20401
|
+
"name": "PullRequestLintOptions",
|
|
20402
|
+
"namespace": "github",
|
|
20403
|
+
"properties": [
|
|
20404
|
+
{
|
|
20405
|
+
"abstract": true,
|
|
20406
|
+
"docs": {
|
|
20407
|
+
"default": "true",
|
|
20408
|
+
"see": "https://www.conventionalcommits.org/",
|
|
20409
|
+
"stability": "experimental",
|
|
20410
|
+
"summary": "Validate that pull request titles follow Conventional Commits."
|
|
20411
|
+
},
|
|
20412
|
+
"immutable": true,
|
|
20413
|
+
"locationInModule": {
|
|
20414
|
+
"filename": "src/github/pull-request-lint.ts",
|
|
20415
|
+
"line": 15
|
|
20416
|
+
},
|
|
20417
|
+
"name": "semanticTitle",
|
|
20418
|
+
"optional": true,
|
|
20419
|
+
"type": {
|
|
20420
|
+
"primitive": "boolean"
|
|
20421
|
+
}
|
|
20422
|
+
},
|
|
20423
|
+
{
|
|
20424
|
+
"abstract": true,
|
|
20425
|
+
"docs": {
|
|
20426
|
+
"default": "- title must start with \"feat\", \"fix\", or \"chore\"",
|
|
20427
|
+
"stability": "experimental",
|
|
20428
|
+
"summary": "Options for validating the conventional commit title linter."
|
|
20429
|
+
},
|
|
20430
|
+
"immutable": true,
|
|
20431
|
+
"locationInModule": {
|
|
20432
|
+
"filename": "src/github/pull-request-lint.ts",
|
|
20433
|
+
"line": 21
|
|
20434
|
+
},
|
|
20435
|
+
"name": "semanticTitleOptions",
|
|
20436
|
+
"optional": true,
|
|
20437
|
+
"type": {
|
|
20438
|
+
"fqn": "projen.github.SemanticTitleOptions"
|
|
20439
|
+
}
|
|
20440
|
+
}
|
|
20441
|
+
],
|
|
20442
|
+
"symbolId": "src/github/pull-request-lint:PullRequestLintOptions"
|
|
20443
|
+
},
|
|
20372
20444
|
"projen.github.PullRequestTemplate": {
|
|
20373
20445
|
"assembly": "projen",
|
|
20374
20446
|
"base": "projen.TextFile",
|
|
@@ -20453,6 +20525,68 @@
|
|
|
20453
20525
|
],
|
|
20454
20526
|
"symbolId": "src/github/pr-template:PullRequestTemplateOptions"
|
|
20455
20527
|
},
|
|
20528
|
+
"projen.github.SemanticTitleOptions": {
|
|
20529
|
+
"assembly": "projen",
|
|
20530
|
+
"datatype": true,
|
|
20531
|
+
"docs": {
|
|
20532
|
+
"see": "https://www.conventionalcommits.org/",
|
|
20533
|
+
"stability": "experimental",
|
|
20534
|
+
"summary": "Options for linting that PR titles follow Conventional Commits."
|
|
20535
|
+
},
|
|
20536
|
+
"fqn": "projen.github.SemanticTitleOptions",
|
|
20537
|
+
"kind": "interface",
|
|
20538
|
+
"locationInModule": {
|
|
20539
|
+
"filename": "src/github/pull-request-lint.ts",
|
|
20540
|
+
"line": 28
|
|
20541
|
+
},
|
|
20542
|
+
"name": "SemanticTitleOptions",
|
|
20543
|
+
"namespace": "github",
|
|
20544
|
+
"properties": [
|
|
20545
|
+
{
|
|
20546
|
+
"abstract": true,
|
|
20547
|
+
"docs": {
|
|
20548
|
+
"default": "false",
|
|
20549
|
+
"remarks": "e.g. feat(ui), fix(core)",
|
|
20550
|
+
"stability": "experimental",
|
|
20551
|
+
"summary": "Configure that a scope must always be provided."
|
|
20552
|
+
},
|
|
20553
|
+
"immutable": true,
|
|
20554
|
+
"locationInModule": {
|
|
20555
|
+
"filename": "src/github/pull-request-lint.ts",
|
|
20556
|
+
"line": 40
|
|
20557
|
+
},
|
|
20558
|
+
"name": "requireScope",
|
|
20559
|
+
"optional": true,
|
|
20560
|
+
"type": {
|
|
20561
|
+
"primitive": "boolean"
|
|
20562
|
+
}
|
|
20563
|
+
},
|
|
20564
|
+
{
|
|
20565
|
+
"abstract": true,
|
|
20566
|
+
"docs": {
|
|
20567
|
+
"default": "[\"feat\", \"fix\", \"chore\"]",
|
|
20568
|
+
"stability": "experimental",
|
|
20569
|
+
"summary": "Configure a list of commit types that are allowed."
|
|
20570
|
+
},
|
|
20571
|
+
"immutable": true,
|
|
20572
|
+
"locationInModule": {
|
|
20573
|
+
"filename": "src/github/pull-request-lint.ts",
|
|
20574
|
+
"line": 33
|
|
20575
|
+
},
|
|
20576
|
+
"name": "types",
|
|
20577
|
+
"optional": true,
|
|
20578
|
+
"type": {
|
|
20579
|
+
"collection": {
|
|
20580
|
+
"elementtype": {
|
|
20581
|
+
"primitive": "string"
|
|
20582
|
+
},
|
|
20583
|
+
"kind": "array"
|
|
20584
|
+
}
|
|
20585
|
+
}
|
|
20586
|
+
}
|
|
20587
|
+
],
|
|
20588
|
+
"symbolId": "src/github/pull-request-lint:SemanticTitleOptions"
|
|
20589
|
+
},
|
|
20456
20590
|
"projen.github.Stale": {
|
|
20457
20591
|
"assembly": "projen",
|
|
20458
20592
|
"base": "projen.Component",
|
|
@@ -25605,54 +25739,25 @@
|
|
|
25605
25739
|
],
|
|
25606
25740
|
"symbolId": "src/java/projenrc:ProjenrcOptions"
|
|
25607
25741
|
},
|
|
25608
|
-
"projen.javascript.
|
|
25742
|
+
"projen.javascript.AddBundleOptions": {
|
|
25609
25743
|
"assembly": "projen",
|
|
25610
25744
|
"datatype": true,
|
|
25611
25745
|
"docs": {
|
|
25612
25746
|
"stability": "experimental",
|
|
25613
|
-
"summary": "Options for
|
|
25747
|
+
"summary": "Options for `addBundle()`."
|
|
25614
25748
|
},
|
|
25615
|
-
"fqn": "projen.javascript.
|
|
25749
|
+
"fqn": "projen.javascript.AddBundleOptions",
|
|
25750
|
+
"interfaces": [
|
|
25751
|
+
"projen.javascript.BundlingOptions"
|
|
25752
|
+
],
|
|
25616
25753
|
"kind": "interface",
|
|
25617
25754
|
"locationInModule": {
|
|
25618
25755
|
"filename": "src/javascript/bundler.ts",
|
|
25619
|
-
"line":
|
|
25756
|
+
"line": 209
|
|
25620
25757
|
},
|
|
25621
|
-
"name": "
|
|
25758
|
+
"name": "AddBundleOptions",
|
|
25622
25759
|
"namespace": "javascript",
|
|
25623
25760
|
"properties": [
|
|
25624
|
-
{
|
|
25625
|
-
"abstract": true,
|
|
25626
|
-
"docs": {
|
|
25627
|
-
"stability": "experimental",
|
|
25628
|
-
"summary": "The entrypoint of the code you wish to bundle."
|
|
25629
|
-
},
|
|
25630
|
-
"immutable": true,
|
|
25631
|
-
"locationInModule": {
|
|
25632
|
-
"filename": "src/javascript/bundler.ts",
|
|
25633
|
-
"line": 125
|
|
25634
|
-
},
|
|
25635
|
-
"name": "entrypoint",
|
|
25636
|
-
"type": {
|
|
25637
|
-
"primitive": "string"
|
|
25638
|
-
}
|
|
25639
|
-
},
|
|
25640
|
-
{
|
|
25641
|
-
"abstract": true,
|
|
25642
|
-
"docs": {
|
|
25643
|
-
"stability": "experimental",
|
|
25644
|
-
"summary": "This option sets the output file name for the build operation."
|
|
25645
|
-
},
|
|
25646
|
-
"immutable": true,
|
|
25647
|
-
"locationInModule": {
|
|
25648
|
-
"filename": "src/javascript/bundler.ts",
|
|
25649
|
-
"line": 144
|
|
25650
|
-
},
|
|
25651
|
-
"name": "outfile",
|
|
25652
|
-
"type": {
|
|
25653
|
-
"primitive": "string"
|
|
25654
|
-
}
|
|
25655
|
-
},
|
|
25656
25761
|
{
|
|
25657
25762
|
"abstract": true,
|
|
25658
25763
|
"docs": {
|
|
@@ -25663,7 +25768,7 @@
|
|
|
25663
25768
|
"immutable": true,
|
|
25664
25769
|
"locationInModule": {
|
|
25665
25770
|
"filename": "src/javascript/bundler.ts",
|
|
25666
|
-
"line":
|
|
25771
|
+
"line": 222
|
|
25667
25772
|
},
|
|
25668
25773
|
"name": "platform",
|
|
25669
25774
|
"type": {
|
|
@@ -25680,81 +25785,88 @@
|
|
|
25680
25785
|
"immutable": true,
|
|
25681
25786
|
"locationInModule": {
|
|
25682
25787
|
"filename": "src/javascript/bundler.ts",
|
|
25683
|
-
"line":
|
|
25788
|
+
"line": 215
|
|
25684
25789
|
},
|
|
25685
25790
|
"name": "target",
|
|
25686
25791
|
"type": {
|
|
25687
25792
|
"primitive": "string"
|
|
25688
25793
|
}
|
|
25689
|
-
}
|
|
25794
|
+
}
|
|
25795
|
+
],
|
|
25796
|
+
"symbolId": "src/javascript/bundler:AddBundleOptions"
|
|
25797
|
+
},
|
|
25798
|
+
"projen.javascript.Bundle": {
|
|
25799
|
+
"assembly": "projen",
|
|
25800
|
+
"datatype": true,
|
|
25801
|
+
"docs": {
|
|
25802
|
+
"stability": "experimental"
|
|
25803
|
+
},
|
|
25804
|
+
"fqn": "projen.javascript.Bundle",
|
|
25805
|
+
"kind": "interface",
|
|
25806
|
+
"locationInModule": {
|
|
25807
|
+
"filename": "src/javascript/bundler.ts",
|
|
25808
|
+
"line": 150
|
|
25809
|
+
},
|
|
25810
|
+
"name": "Bundle",
|
|
25811
|
+
"namespace": "javascript",
|
|
25812
|
+
"properties": [
|
|
25690
25813
|
{
|
|
25691
25814
|
"abstract": true,
|
|
25692
25815
|
"docs": {
|
|
25693
|
-
"default": "[]",
|
|
25694
|
-
"remarks": "Instead of being bundled, the import will be preserved (using require for\nthe iife and cjs formats and using import for the esm format) and will be\nevaluated at run time instead.\n\nThis has several uses. First of all, it can be used to trim unnecessary\ncode from your bundle for a code path that you know will never be executed.\nFor example, a package may contain code that only runs in node but you will\nonly be using that package in the browser. It can also be used to import\ncode in node at run time from a package that cannot be bundled. For\nexample, the fsevents package contains a native extension, which esbuild\ndoesn't support.",
|
|
25695
25816
|
"stability": "experimental",
|
|
25696
|
-
"summary": "
|
|
25817
|
+
"summary": "The task that produces this bundle."
|
|
25697
25818
|
},
|
|
25698
25819
|
"immutable": true,
|
|
25699
25820
|
"locationInModule": {
|
|
25700
25821
|
"filename": "src/javascript/bundler.ts",
|
|
25701
|
-
"line":
|
|
25822
|
+
"line": 154
|
|
25702
25823
|
},
|
|
25703
|
-
"name": "
|
|
25704
|
-
"optional": true,
|
|
25824
|
+
"name": "bundleTask",
|
|
25705
25825
|
"type": {
|
|
25706
|
-
"
|
|
25707
|
-
"elementtype": {
|
|
25708
|
-
"primitive": "string"
|
|
25709
|
-
},
|
|
25710
|
-
"kind": "array"
|
|
25711
|
-
}
|
|
25826
|
+
"fqn": "projen.tasks.Task"
|
|
25712
25827
|
}
|
|
25713
25828
|
},
|
|
25714
25829
|
{
|
|
25715
25830
|
"abstract": true,
|
|
25716
25831
|
"docs": {
|
|
25717
|
-
"default": "true",
|
|
25718
25832
|
"stability": "experimental",
|
|
25719
|
-
"summary": "
|
|
25833
|
+
"summary": "Location of the output file (relative to project root)."
|
|
25720
25834
|
},
|
|
25721
25835
|
"immutable": true,
|
|
25722
25836
|
"locationInModule": {
|
|
25723
25837
|
"filename": "src/javascript/bundler.ts",
|
|
25724
|
-
"line":
|
|
25838
|
+
"line": 164
|
|
25725
25839
|
},
|
|
25726
|
-
"name": "
|
|
25727
|
-
"optional": true,
|
|
25840
|
+
"name": "outfile",
|
|
25728
25841
|
"type": {
|
|
25729
|
-
"primitive": "
|
|
25842
|
+
"primitive": "string"
|
|
25730
25843
|
}
|
|
25731
25844
|
},
|
|
25732
25845
|
{
|
|
25733
25846
|
"abstract": true,
|
|
25734
25847
|
"docs": {
|
|
25735
|
-
"default": "true",
|
|
25736
|
-
"remarks": "This can be used\nto continusouly watch for changes.",
|
|
25737
25848
|
"stability": "experimental",
|
|
25738
|
-
"summary": "
|
|
25849
|
+
"summary": "The \"watch\" task for this bundle."
|
|
25739
25850
|
},
|
|
25740
25851
|
"immutable": true,
|
|
25741
25852
|
"locationInModule": {
|
|
25742
25853
|
"filename": "src/javascript/bundler.ts",
|
|
25743
|
-
"line":
|
|
25854
|
+
"line": 159
|
|
25744
25855
|
},
|
|
25745
25856
|
"name": "watchTask",
|
|
25746
25857
|
"optional": true,
|
|
25747
25858
|
"type": {
|
|
25748
|
-
"
|
|
25859
|
+
"fqn": "projen.tasks.Task"
|
|
25749
25860
|
}
|
|
25750
25861
|
}
|
|
25751
25862
|
],
|
|
25752
|
-
"symbolId": "src/javascript/bundler:
|
|
25863
|
+
"symbolId": "src/javascript/bundler:Bundle"
|
|
25753
25864
|
},
|
|
25754
25865
|
"projen.javascript.Bundler": {
|
|
25755
25866
|
"assembly": "projen",
|
|
25756
25867
|
"base": "projen.Component",
|
|
25757
25868
|
"docs": {
|
|
25869
|
+
"remarks": "In the future, this will also supports bundling websites.",
|
|
25758
25870
|
"stability": "experimental",
|
|
25759
25871
|
"summary": "Adds support for bundling JavaScript applications and dependencies into a single file."
|
|
25760
25872
|
},
|
|
@@ -25766,7 +25878,7 @@
|
|
|
25766
25878
|
},
|
|
25767
25879
|
"locationInModule": {
|
|
25768
25880
|
"filename": "src/javascript/bundler.ts",
|
|
25769
|
-
"line":
|
|
25881
|
+
"line": 57
|
|
25770
25882
|
},
|
|
25771
25883
|
"parameters": [
|
|
25772
25884
|
{
|
|
@@ -25787,7 +25899,7 @@
|
|
|
25787
25899
|
"kind": "class",
|
|
25788
25900
|
"locationInModule": {
|
|
25789
25901
|
"filename": "src/javascript/bundler.ts",
|
|
25790
|
-
"line":
|
|
25902
|
+
"line": 30
|
|
25791
25903
|
},
|
|
25792
25904
|
"methods": [
|
|
25793
25905
|
{
|
|
@@ -25798,7 +25910,7 @@
|
|
|
25798
25910
|
},
|
|
25799
25911
|
"locationInModule": {
|
|
25800
25912
|
"filename": "src/javascript/bundler.ts",
|
|
25801
|
-
"line":
|
|
25913
|
+
"line": 37
|
|
25802
25914
|
},
|
|
25803
25915
|
"name": "of",
|
|
25804
25916
|
"parameters": [
|
|
@@ -25827,15 +25939,12 @@
|
|
|
25827
25939
|
},
|
|
25828
25940
|
"locationInModule": {
|
|
25829
25941
|
"filename": "src/javascript/bundler.ts",
|
|
25830
|
-
"line":
|
|
25942
|
+
"line": 91
|
|
25831
25943
|
},
|
|
25832
25944
|
"name": "addBundle",
|
|
25833
25945
|
"parameters": [
|
|
25834
25946
|
{
|
|
25835
|
-
"
|
|
25836
|
-
"summary": "The name of the artifact (the task will be named `bundle:$name`)."
|
|
25837
|
-
},
|
|
25838
|
-
"name": "name",
|
|
25947
|
+
"name": "entrypoint",
|
|
25839
25948
|
"type": {
|
|
25840
25949
|
"primitive": "string"
|
|
25841
25950
|
}
|
|
@@ -25846,13 +25955,13 @@
|
|
|
25846
25955
|
},
|
|
25847
25956
|
"name": "options",
|
|
25848
25957
|
"type": {
|
|
25849
|
-
"fqn": "projen.javascript.
|
|
25958
|
+
"fqn": "projen.javascript.AddBundleOptions"
|
|
25850
25959
|
}
|
|
25851
25960
|
}
|
|
25852
25961
|
],
|
|
25853
25962
|
"returns": {
|
|
25854
25963
|
"type": {
|
|
25855
|
-
"fqn": "projen.
|
|
25964
|
+
"fqn": "projen.javascript.Bundle"
|
|
25856
25965
|
}
|
|
25857
25966
|
}
|
|
25858
25967
|
}
|
|
@@ -25862,13 +25971,29 @@
|
|
|
25862
25971
|
"properties": [
|
|
25863
25972
|
{
|
|
25864
25973
|
"docs": {
|
|
25974
|
+
"stability": "experimental",
|
|
25975
|
+
"summary": "Root bundle directory."
|
|
25976
|
+
},
|
|
25977
|
+
"immutable": true,
|
|
25978
|
+
"locationInModule": {
|
|
25979
|
+
"filename": "src/javascript/bundler.ts",
|
|
25980
|
+
"line": 50
|
|
25981
|
+
},
|
|
25982
|
+
"name": "bundledir",
|
|
25983
|
+
"type": {
|
|
25984
|
+
"primitive": "string"
|
|
25985
|
+
}
|
|
25986
|
+
},
|
|
25987
|
+
{
|
|
25988
|
+
"docs": {
|
|
25989
|
+
"remarks": "If the project doesn't have a \"bundle\" task, it will be created and spawned\nduring the pre-compile phase.",
|
|
25865
25990
|
"stability": "experimental",
|
|
25866
25991
|
"summary": "Gets or creates the singleton \"bundle\" task of the project."
|
|
25867
25992
|
},
|
|
25868
25993
|
"immutable": true,
|
|
25869
25994
|
"locationInModule": {
|
|
25870
25995
|
"filename": "src/javascript/bundler.ts",
|
|
25871
|
-
"line":
|
|
25996
|
+
"line": 71
|
|
25872
25997
|
},
|
|
25873
25998
|
"name": "bundleTask",
|
|
25874
25999
|
"type": {
|
|
@@ -25877,12 +26002,13 @@
|
|
|
25877
26002
|
},
|
|
25878
26003
|
{
|
|
25879
26004
|
"docs": {
|
|
25880
|
-
"stability": "experimental"
|
|
26005
|
+
"stability": "experimental",
|
|
26006
|
+
"summary": "The semantic version requirement for `esbuild` (if defined)."
|
|
25881
26007
|
},
|
|
25882
26008
|
"immutable": true,
|
|
25883
26009
|
"locationInModule": {
|
|
25884
26010
|
"filename": "src/javascript/bundler.ts",
|
|
25885
|
-
"line":
|
|
26011
|
+
"line": 45
|
|
25886
26012
|
},
|
|
25887
26013
|
"name": "esbuildVersion",
|
|
25888
26014
|
"optional": true,
|
|
@@ -25893,22 +26019,40 @@
|
|
|
25893
26019
|
],
|
|
25894
26020
|
"symbolId": "src/javascript/bundler:Bundler"
|
|
25895
26021
|
},
|
|
25896
|
-
"projen.javascript.
|
|
26022
|
+
"projen.javascript.BundlerOptions": {
|
|
25897
26023
|
"assembly": "projen",
|
|
25898
26024
|
"datatype": true,
|
|
25899
26025
|
"docs": {
|
|
25900
26026
|
"stability": "experimental",
|
|
25901
|
-
"summary": "
|
|
26027
|
+
"summary": "Options for `Bundler`."
|
|
25902
26028
|
},
|
|
25903
|
-
"fqn": "projen.javascript.
|
|
26029
|
+
"fqn": "projen.javascript.BundlerOptions",
|
|
25904
26030
|
"kind": "interface",
|
|
25905
26031
|
"locationInModule": {
|
|
25906
26032
|
"filename": "src/javascript/bundler.ts",
|
|
25907
|
-
"line":
|
|
26033
|
+
"line": 11
|
|
25908
26034
|
},
|
|
25909
|
-
"name": "
|
|
26035
|
+
"name": "BundlerOptions",
|
|
25910
26036
|
"namespace": "javascript",
|
|
25911
26037
|
"properties": [
|
|
26038
|
+
{
|
|
26039
|
+
"abstract": true,
|
|
26040
|
+
"docs": {
|
|
26041
|
+
"default": "\"assets\"",
|
|
26042
|
+
"stability": "experimental",
|
|
26043
|
+
"summary": "Output directory for all bundles."
|
|
26044
|
+
},
|
|
26045
|
+
"immutable": true,
|
|
26046
|
+
"locationInModule": {
|
|
26047
|
+
"filename": "src/javascript/bundler.ts",
|
|
26048
|
+
"line": 23
|
|
26049
|
+
},
|
|
26050
|
+
"name": "assetsDir",
|
|
26051
|
+
"optional": true,
|
|
26052
|
+
"type": {
|
|
26053
|
+
"primitive": "string"
|
|
26054
|
+
}
|
|
26055
|
+
},
|
|
25912
26056
|
{
|
|
25913
26057
|
"abstract": true,
|
|
25914
26058
|
"docs": {
|
|
@@ -25919,7 +26063,7 @@
|
|
|
25919
26063
|
"immutable": true,
|
|
25920
26064
|
"locationInModule": {
|
|
25921
26065
|
"filename": "src/javascript/bundler.ts",
|
|
25922
|
-
"line":
|
|
26066
|
+
"line": 17
|
|
25923
26067
|
},
|
|
25924
26068
|
"name": "esbuildVersion",
|
|
25925
26069
|
"optional": true,
|
|
@@ -25928,27 +26072,87 @@
|
|
|
25928
26072
|
}
|
|
25929
26073
|
}
|
|
25930
26074
|
],
|
|
25931
|
-
"symbolId": "src/javascript/bundler:
|
|
26075
|
+
"symbolId": "src/javascript/bundler:BundlerOptions"
|
|
25932
26076
|
},
|
|
25933
|
-
"projen.javascript.
|
|
26077
|
+
"projen.javascript.BundlingOptions": {
|
|
25934
26078
|
"assembly": "projen",
|
|
25935
26079
|
"datatype": true,
|
|
25936
26080
|
"docs": {
|
|
25937
26081
|
"stability": "experimental",
|
|
25938
|
-
"summary": "Options for
|
|
26082
|
+
"summary": "Options for bundling."
|
|
25939
26083
|
},
|
|
25940
|
-
"fqn": "projen.javascript.
|
|
25941
|
-
"interfaces": [
|
|
25942
|
-
"projen.javascript.BundlerCommonOptions"
|
|
25943
|
-
],
|
|
26084
|
+
"fqn": "projen.javascript.BundlingOptions",
|
|
25944
26085
|
"kind": "interface",
|
|
25945
26086
|
"locationInModule": {
|
|
25946
26087
|
"filename": "src/javascript/bundler.ts",
|
|
25947
|
-
"line":
|
|
26088
|
+
"line": 170
|
|
25948
26089
|
},
|
|
25949
|
-
"name": "
|
|
26090
|
+
"name": "BundlingOptions",
|
|
25950
26091
|
"namespace": "javascript",
|
|
25951
|
-
"
|
|
26092
|
+
"properties": [
|
|
26093
|
+
{
|
|
26094
|
+
"abstract": true,
|
|
26095
|
+
"docs": {
|
|
26096
|
+
"default": "[]",
|
|
26097
|
+
"remarks": "Instead of being bundled, the import will be preserved (using require for\nthe iife and cjs formats and using import for the esm format) and will be\nevaluated at run time instead.\n\nThis has several uses. First of all, it can be used to trim unnecessary\ncode from your bundle for a code path that you know will never be executed.\nFor example, a package may contain code that only runs in node but you will\nonly be using that package in the browser. It can also be used to import\ncode in node at run time from a package that cannot be bundled. For\nexample, the fsevents package contains a native extension, which esbuild\ndoesn't support.",
|
|
26098
|
+
"stability": "experimental",
|
|
26099
|
+
"summary": "You can mark a file or a package as external to exclude it from your build."
|
|
26100
|
+
},
|
|
26101
|
+
"immutable": true,
|
|
26102
|
+
"locationInModule": {
|
|
26103
|
+
"filename": "src/javascript/bundler.ts",
|
|
26104
|
+
"line": 187
|
|
26105
|
+
},
|
|
26106
|
+
"name": "externals",
|
|
26107
|
+
"optional": true,
|
|
26108
|
+
"type": {
|
|
26109
|
+
"collection": {
|
|
26110
|
+
"elementtype": {
|
|
26111
|
+
"primitive": "string"
|
|
26112
|
+
},
|
|
26113
|
+
"kind": "array"
|
|
26114
|
+
}
|
|
26115
|
+
}
|
|
26116
|
+
},
|
|
26117
|
+
{
|
|
26118
|
+
"abstract": true,
|
|
26119
|
+
"docs": {
|
|
26120
|
+
"default": "false",
|
|
26121
|
+
"stability": "experimental",
|
|
26122
|
+
"summary": "Include a source map in the bundle."
|
|
26123
|
+
},
|
|
26124
|
+
"immutable": true,
|
|
26125
|
+
"locationInModule": {
|
|
26126
|
+
"filename": "src/javascript/bundler.ts",
|
|
26127
|
+
"line": 194
|
|
26128
|
+
},
|
|
26129
|
+
"name": "sourcemap",
|
|
26130
|
+
"optional": true,
|
|
26131
|
+
"type": {
|
|
26132
|
+
"primitive": "boolean"
|
|
26133
|
+
}
|
|
26134
|
+
},
|
|
26135
|
+
{
|
|
26136
|
+
"abstract": true,
|
|
26137
|
+
"docs": {
|
|
26138
|
+
"default": "true",
|
|
26139
|
+
"remarks": "This can be used\nto continusouly watch for changes.",
|
|
26140
|
+
"stability": "experimental",
|
|
26141
|
+
"summary": "In addition to the `bundle:xyz` task, creates `bundle:xyz:watch` task which will invoke the same esbuild command with the `--watch` flag."
|
|
26142
|
+
},
|
|
26143
|
+
"immutable": true,
|
|
26144
|
+
"locationInModule": {
|
|
26145
|
+
"filename": "src/javascript/bundler.ts",
|
|
26146
|
+
"line": 203
|
|
26147
|
+
},
|
|
26148
|
+
"name": "watchTask",
|
|
26149
|
+
"optional": true,
|
|
26150
|
+
"type": {
|
|
26151
|
+
"primitive": "boolean"
|
|
26152
|
+
}
|
|
26153
|
+
}
|
|
26154
|
+
],
|
|
26155
|
+
"symbolId": "src/javascript/bundler:BundlingOptions"
|
|
25952
26156
|
},
|
|
25953
26157
|
"projen.javascript.NpmConfig": {
|
|
25954
26158
|
"assembly": "projen",
|
|
@@ -28897,7 +29101,7 @@
|
|
|
28897
29101
|
"kind": "interface",
|
|
28898
29102
|
"locationInModule": {
|
|
28899
29103
|
"filename": "src/release/publisher.ts",
|
|
28900
|
-
"line":
|
|
29104
|
+
"line": 495
|
|
28901
29105
|
},
|
|
28902
29106
|
"name": "CodeArtifactOptions",
|
|
28903
29107
|
"namespace": "release",
|
|
@@ -28913,7 +29117,7 @@
|
|
|
28913
29117
|
"immutable": true,
|
|
28914
29118
|
"locationInModule": {
|
|
28915
29119
|
"filename": "src/release/publisher.ts",
|
|
28916
|
-
"line":
|
|
29120
|
+
"line": 502
|
|
28917
29121
|
},
|
|
28918
29122
|
"name": "accessKeyIdSecret",
|
|
28919
29123
|
"optional": true,
|
|
@@ -28921,6 +29125,24 @@
|
|
|
28921
29125
|
"primitive": "string"
|
|
28922
29126
|
}
|
|
28923
29127
|
},
|
|
29128
|
+
{
|
|
29129
|
+
"abstract": true,
|
|
29130
|
+
"docs": {
|
|
29131
|
+
"default": "undefined",
|
|
29132
|
+
"stability": "experimental",
|
|
29133
|
+
"summary": "ARN of AWS role to be assumed prior to get authorization token from AWS CodeArtifact This property must be specified only when publishing to AWS CodeArtifact (`registry` contains AWS CodeArtifact URL)."
|
|
29134
|
+
},
|
|
29135
|
+
"immutable": true,
|
|
29136
|
+
"locationInModule": {
|
|
29137
|
+
"filename": "src/release/publisher.ts",
|
|
29138
|
+
"line": 518
|
|
29139
|
+
},
|
|
29140
|
+
"name": "roleToAssume",
|
|
29141
|
+
"optional": true,
|
|
29142
|
+
"type": {
|
|
29143
|
+
"primitive": "string"
|
|
29144
|
+
}
|
|
29145
|
+
},
|
|
28924
29146
|
{
|
|
28925
29147
|
"abstract": true,
|
|
28926
29148
|
"docs": {
|
|
@@ -28932,7 +29154,7 @@
|
|
|
28932
29154
|
"immutable": true,
|
|
28933
29155
|
"locationInModule": {
|
|
28934
29156
|
"filename": "src/release/publisher.ts",
|
|
28935
|
-
"line":
|
|
29157
|
+
"line": 510
|
|
28936
29158
|
},
|
|
28937
29159
|
"name": "secretAccessKeySecret",
|
|
28938
29160
|
"optional": true,
|
|
@@ -28954,7 +29176,7 @@
|
|
|
28954
29176
|
"kind": "interface",
|
|
28955
29177
|
"locationInModule": {
|
|
28956
29178
|
"filename": "src/release/publisher.ts",
|
|
28957
|
-
"line":
|
|
29179
|
+
"line": 739
|
|
28958
29180
|
},
|
|
28959
29181
|
"name": "GitHubReleasesPublishOptions",
|
|
28960
29182
|
"namespace": "release",
|
|
@@ -28969,7 +29191,7 @@
|
|
|
28969
29191
|
"immutable": true,
|
|
28970
29192
|
"locationInModule": {
|
|
28971
29193
|
"filename": "src/release/publisher.ts",
|
|
28972
|
-
"line":
|
|
29194
|
+
"line": 724
|
|
28973
29195
|
},
|
|
28974
29196
|
"name": "changelogFile",
|
|
28975
29197
|
"type": {
|
|
@@ -28986,7 +29208,7 @@
|
|
|
28986
29208
|
"immutable": true,
|
|
28987
29209
|
"locationInModule": {
|
|
28988
29210
|
"filename": "src/release/publisher.ts",
|
|
28989
|
-
"line":
|
|
29211
|
+
"line": 717
|
|
28990
29212
|
},
|
|
28991
29213
|
"name": "releaseTagFile",
|
|
28992
29214
|
"type": {
|
|
@@ -29003,7 +29225,7 @@
|
|
|
29003
29225
|
"immutable": true,
|
|
29004
29226
|
"locationInModule": {
|
|
29005
29227
|
"filename": "src/release/publisher.ts",
|
|
29006
|
-
"line":
|
|
29228
|
+
"line": 710
|
|
29007
29229
|
},
|
|
29008
29230
|
"name": "versionFile",
|
|
29009
29231
|
"type": {
|
|
@@ -29024,7 +29246,7 @@
|
|
|
29024
29246
|
"kind": "interface",
|
|
29025
29247
|
"locationInModule": {
|
|
29026
29248
|
"filename": "src/release/publisher.ts",
|
|
29027
|
-
"line":
|
|
29249
|
+
"line": 744
|
|
29028
29250
|
},
|
|
29029
29251
|
"name": "GitPublishOptions",
|
|
29030
29252
|
"namespace": "release",
|
|
@@ -29039,7 +29261,7 @@
|
|
|
29039
29261
|
"immutable": true,
|
|
29040
29262
|
"locationInModule": {
|
|
29041
29263
|
"filename": "src/release/publisher.ts",
|
|
29042
|
-
"line":
|
|
29264
|
+
"line": 724
|
|
29043
29265
|
},
|
|
29044
29266
|
"name": "changelogFile",
|
|
29045
29267
|
"type": {
|
|
@@ -29056,7 +29278,7 @@
|
|
|
29056
29278
|
"immutable": true,
|
|
29057
29279
|
"locationInModule": {
|
|
29058
29280
|
"filename": "src/release/publisher.ts",
|
|
29059
|
-
"line":
|
|
29281
|
+
"line": 717
|
|
29060
29282
|
},
|
|
29061
29283
|
"name": "releaseTagFile",
|
|
29062
29284
|
"type": {
|
|
@@ -29073,7 +29295,7 @@
|
|
|
29073
29295
|
"immutable": true,
|
|
29074
29296
|
"locationInModule": {
|
|
29075
29297
|
"filename": "src/release/publisher.ts",
|
|
29076
|
-
"line":
|
|
29298
|
+
"line": 710
|
|
29077
29299
|
},
|
|
29078
29300
|
"name": "versionFile",
|
|
29079
29301
|
"type": {
|
|
@@ -29090,7 +29312,7 @@
|
|
|
29090
29312
|
"immutable": true,
|
|
29091
29313
|
"locationInModule": {
|
|
29092
29314
|
"filename": "src/release/publisher.ts",
|
|
29093
|
-
"line":
|
|
29315
|
+
"line": 755
|
|
29094
29316
|
},
|
|
29095
29317
|
"name": "gitBranch",
|
|
29096
29318
|
"optional": true,
|
|
@@ -29107,7 +29329,7 @@
|
|
|
29107
29329
|
"immutable": true,
|
|
29108
29330
|
"locationInModule": {
|
|
29109
29331
|
"filename": "src/release/publisher.ts",
|
|
29110
|
-
"line":
|
|
29332
|
+
"line": 748
|
|
29111
29333
|
},
|
|
29112
29334
|
"name": "projectChangelogFile",
|
|
29113
29335
|
"optional": true,
|
|
@@ -29129,7 +29351,7 @@
|
|
|
29129
29351
|
"kind": "interface",
|
|
29130
29352
|
"locationInModule": {
|
|
29131
29353
|
"filename": "src/release/publisher.ts",
|
|
29132
|
-
"line":
|
|
29354
|
+
"line": 661
|
|
29133
29355
|
},
|
|
29134
29356
|
"name": "GoPublishOptions",
|
|
29135
29357
|
"namespace": "release",
|
|
@@ -29144,7 +29366,7 @@
|
|
|
29144
29366
|
"immutable": true,
|
|
29145
29367
|
"locationInModule": {
|
|
29146
29368
|
"filename": "src/release/publisher.ts",
|
|
29147
|
-
"line":
|
|
29369
|
+
"line": 682
|
|
29148
29370
|
},
|
|
29149
29371
|
"name": "gitBranch",
|
|
29150
29372
|
"optional": true,
|
|
@@ -29162,7 +29384,7 @@
|
|
|
29162
29384
|
"immutable": true,
|
|
29163
29385
|
"locationInModule": {
|
|
29164
29386
|
"filename": "src/release/publisher.ts",
|
|
29165
|
-
"line":
|
|
29387
|
+
"line": 701
|
|
29166
29388
|
},
|
|
29167
29389
|
"name": "gitCommitMessage",
|
|
29168
29390
|
"optional": true,
|
|
@@ -29180,7 +29402,7 @@
|
|
|
29180
29402
|
"immutable": true,
|
|
29181
29403
|
"locationInModule": {
|
|
29182
29404
|
"filename": "src/release/publisher.ts",
|
|
29183
|
-
"line":
|
|
29405
|
+
"line": 675
|
|
29184
29406
|
},
|
|
29185
29407
|
"name": "githubRepo",
|
|
29186
29408
|
"optional": true,
|
|
@@ -29198,7 +29420,7 @@
|
|
|
29198
29420
|
"immutable": true,
|
|
29199
29421
|
"locationInModule": {
|
|
29200
29422
|
"filename": "src/release/publisher.ts",
|
|
29201
|
-
"line":
|
|
29423
|
+
"line": 668
|
|
29202
29424
|
},
|
|
29203
29425
|
"name": "githubTokenSecret",
|
|
29204
29426
|
"optional": true,
|
|
@@ -29219,7 +29441,7 @@
|
|
|
29219
29441
|
"immutable": true,
|
|
29220
29442
|
"locationInModule": {
|
|
29221
29443
|
"filename": "src/release/publisher.ts",
|
|
29222
|
-
"line":
|
|
29444
|
+
"line": 694
|
|
29223
29445
|
},
|
|
29224
29446
|
"name": "gitUserEmail",
|
|
29225
29447
|
"optional": true,
|
|
@@ -29237,7 +29459,7 @@
|
|
|
29237
29459
|
"immutable": true,
|
|
29238
29460
|
"locationInModule": {
|
|
29239
29461
|
"filename": "src/release/publisher.ts",
|
|
29240
|
-
"line":
|
|
29462
|
+
"line": 688
|
|
29241
29463
|
},
|
|
29242
29464
|
"name": "gitUserName",
|
|
29243
29465
|
"optional": true,
|
|
@@ -29262,7 +29484,7 @@
|
|
|
29262
29484
|
"kind": "interface",
|
|
29263
29485
|
"locationInModule": {
|
|
29264
29486
|
"filename": "src/release/publisher.ts",
|
|
29265
|
-
"line":
|
|
29487
|
+
"line": 570
|
|
29266
29488
|
},
|
|
29267
29489
|
"name": "JsiiReleaseMaven",
|
|
29268
29490
|
"namespace": "release",
|
|
@@ -29282,7 +29504,7 @@
|
|
|
29282
29504
|
"kind": "interface",
|
|
29283
29505
|
"locationInModule": {
|
|
29284
29506
|
"filename": "src/release/publisher.ts",
|
|
29285
|
-
"line":
|
|
29507
|
+
"line": 443
|
|
29286
29508
|
},
|
|
29287
29509
|
"name": "JsiiReleaseNpm",
|
|
29288
29510
|
"namespace": "release",
|
|
@@ -29302,7 +29524,7 @@
|
|
|
29302
29524
|
"kind": "interface",
|
|
29303
29525
|
"locationInModule": {
|
|
29304
29526
|
"filename": "src/release/publisher.ts",
|
|
29305
|
-
"line":
|
|
29527
|
+
"line": 553
|
|
29306
29528
|
},
|
|
29307
29529
|
"name": "JsiiReleaseNuget",
|
|
29308
29530
|
"namespace": "release",
|
|
@@ -29322,7 +29544,7 @@
|
|
|
29322
29544
|
"kind": "interface",
|
|
29323
29545
|
"locationInModule": {
|
|
29324
29546
|
"filename": "src/release/publisher.ts",
|
|
29325
|
-
"line":
|
|
29547
|
+
"line": 524
|
|
29326
29548
|
},
|
|
29327
29549
|
"name": "JsiiReleasePyPi",
|
|
29328
29550
|
"namespace": "release",
|
|
@@ -29394,7 +29616,7 @@
|
|
|
29394
29616
|
"kind": "interface",
|
|
29395
29617
|
"locationInModule": {
|
|
29396
29618
|
"filename": "src/release/publisher.ts",
|
|
29397
|
-
"line":
|
|
29619
|
+
"line": 575
|
|
29398
29620
|
},
|
|
29399
29621
|
"name": "MavenPublishOptions",
|
|
29400
29622
|
"namespace": "release",
|
|
@@ -29410,7 +29632,7 @@
|
|
|
29410
29632
|
"immutable": true,
|
|
29411
29633
|
"locationInModule": {
|
|
29412
29634
|
"filename": "src/release/publisher.ts",
|
|
29413
|
-
"line":
|
|
29635
|
+
"line": 581
|
|
29414
29636
|
},
|
|
29415
29637
|
"name": "mavenEndpoint",
|
|
29416
29638
|
"optional": true,
|
|
@@ -29430,7 +29652,7 @@
|
|
|
29430
29652
|
"immutable": true,
|
|
29431
29653
|
"locationInModule": {
|
|
29432
29654
|
"filename": "src/release/publisher.ts",
|
|
29433
|
-
"line":
|
|
29655
|
+
"line": 614
|
|
29434
29656
|
},
|
|
29435
29657
|
"name": "mavenGpgPrivateKeyPassphrase",
|
|
29436
29658
|
"optional": true,
|
|
@@ -29450,7 +29672,7 @@
|
|
|
29450
29672
|
"immutable": true,
|
|
29451
29673
|
"locationInModule": {
|
|
29452
29674
|
"filename": "src/release/publisher.ts",
|
|
29453
|
-
"line":
|
|
29675
|
+
"line": 605
|
|
29454
29676
|
},
|
|
29455
29677
|
"name": "mavenGpgPrivateKeySecret",
|
|
29456
29678
|
"optional": true,
|
|
@@ -29470,7 +29692,7 @@
|
|
|
29470
29692
|
"immutable": true,
|
|
29471
29693
|
"locationInModule": {
|
|
29472
29694
|
"filename": "src/release/publisher.ts",
|
|
29473
|
-
"line":
|
|
29695
|
+
"line": 640
|
|
29474
29696
|
},
|
|
29475
29697
|
"name": "mavenPassword",
|
|
29476
29698
|
"optional": true,
|
|
@@ -29488,7 +29710,7 @@
|
|
|
29488
29710
|
"immutable": true,
|
|
29489
29711
|
"locationInModule": {
|
|
29490
29712
|
"filename": "src/release/publisher.ts",
|
|
29491
|
-
"line":
|
|
29713
|
+
"line": 595
|
|
29492
29714
|
},
|
|
29493
29715
|
"name": "mavenRepositoryUrl",
|
|
29494
29716
|
"optional": true,
|
|
@@ -29506,7 +29728,7 @@
|
|
|
29506
29728
|
"immutable": true,
|
|
29507
29729
|
"locationInModule": {
|
|
29508
29730
|
"filename": "src/release/publisher.ts",
|
|
29509
|
-
"line":
|
|
29731
|
+
"line": 588
|
|
29510
29732
|
},
|
|
29511
29733
|
"name": "mavenServerId",
|
|
29512
29734
|
"optional": true,
|
|
@@ -29524,7 +29746,7 @@
|
|
|
29524
29746
|
"immutable": true,
|
|
29525
29747
|
"locationInModule": {
|
|
29526
29748
|
"filename": "src/release/publisher.ts",
|
|
29527
|
-
"line":
|
|
29749
|
+
"line": 651
|
|
29528
29750
|
},
|
|
29529
29751
|
"name": "mavenStagingProfileId",
|
|
29530
29752
|
"optional": true,
|
|
@@ -29544,7 +29766,7 @@
|
|
|
29544
29766
|
"immutable": true,
|
|
29545
29767
|
"locationInModule": {
|
|
29546
29768
|
"filename": "src/release/publisher.ts",
|
|
29547
|
-
"line":
|
|
29769
|
+
"line": 627
|
|
29548
29770
|
},
|
|
29549
29771
|
"name": "mavenUsername",
|
|
29550
29772
|
"optional": true,
|
|
@@ -29566,7 +29788,7 @@
|
|
|
29566
29788
|
"kind": "interface",
|
|
29567
29789
|
"locationInModule": {
|
|
29568
29790
|
"filename": "src/release/publisher.ts",
|
|
29569
|
-
"line":
|
|
29791
|
+
"line": 448
|
|
29570
29792
|
},
|
|
29571
29793
|
"name": "NpmPublishOptions",
|
|
29572
29794
|
"namespace": "release",
|
|
@@ -29581,7 +29803,7 @@
|
|
|
29581
29803
|
"immutable": true,
|
|
29582
29804
|
"locationInModule": {
|
|
29583
29805
|
"filename": "src/release/publisher.ts",
|
|
29584
|
-
"line":
|
|
29806
|
+
"line": 492
|
|
29585
29807
|
},
|
|
29586
29808
|
"name": "codeArtifactOptions",
|
|
29587
29809
|
"optional": true,
|
|
@@ -29600,7 +29822,7 @@
|
|
|
29600
29822
|
"immutable": true,
|
|
29601
29823
|
"locationInModule": {
|
|
29602
29824
|
"filename": "src/release/publisher.ts",
|
|
29603
|
-
"line":
|
|
29825
|
+
"line": 465
|
|
29604
29826
|
},
|
|
29605
29827
|
"name": "distTag",
|
|
29606
29828
|
"optional": true,
|
|
@@ -29618,7 +29840,7 @@
|
|
|
29618
29840
|
"immutable": true,
|
|
29619
29841
|
"locationInModule": {
|
|
29620
29842
|
"filename": "src/release/publisher.ts",
|
|
29621
|
-
"line":
|
|
29843
|
+
"line": 485
|
|
29622
29844
|
},
|
|
29623
29845
|
"name": "npmTokenSecret",
|
|
29624
29846
|
"optional": true,
|
|
@@ -29638,7 +29860,7 @@
|
|
|
29638
29860
|
"immutable": true,
|
|
29639
29861
|
"locationInModule": {
|
|
29640
29862
|
"filename": "src/release/publisher.ts",
|
|
29641
|
-
"line":
|
|
29863
|
+
"line": 479
|
|
29642
29864
|
},
|
|
29643
29865
|
"name": "registry",
|
|
29644
29866
|
"optional": true,
|
|
@@ -29660,7 +29882,7 @@
|
|
|
29660
29882
|
"kind": "interface",
|
|
29661
29883
|
"locationInModule": {
|
|
29662
29884
|
"filename": "src/release/publisher.ts",
|
|
29663
|
-
"line":
|
|
29885
|
+
"line": 558
|
|
29664
29886
|
},
|
|
29665
29887
|
"name": "NugetPublishOptions",
|
|
29666
29888
|
"namespace": "release",
|
|
@@ -29675,7 +29897,7 @@
|
|
|
29675
29897
|
"immutable": true,
|
|
29676
29898
|
"locationInModule": {
|
|
29677
29899
|
"filename": "src/release/publisher.ts",
|
|
29678
|
-
"line":
|
|
29900
|
+
"line": 564
|
|
29679
29901
|
},
|
|
29680
29902
|
"name": "nugetApiKeySecret",
|
|
29681
29903
|
"optional": true,
|
|
@@ -29781,7 +30003,7 @@
|
|
|
29781
30003
|
},
|
|
29782
30004
|
"locationInModule": {
|
|
29783
30005
|
"filename": "src/release/publisher.ts",
|
|
29784
|
-
"line":
|
|
30006
|
+
"line": 290
|
|
29785
30007
|
},
|
|
29786
30008
|
"name": "publishToGo",
|
|
29787
30009
|
"parameters": [
|
|
@@ -29804,7 +30026,7 @@
|
|
|
29804
30026
|
},
|
|
29805
30027
|
"locationInModule": {
|
|
29806
30028
|
"filename": "src/release/publisher.ts",
|
|
29807
|
-
"line":
|
|
30029
|
+
"line": 233
|
|
29808
30030
|
},
|
|
29809
30031
|
"name": "publishToMaven",
|
|
29810
30032
|
"parameters": [
|
|
@@ -29850,7 +30072,7 @@
|
|
|
29850
30072
|
},
|
|
29851
30073
|
"locationInModule": {
|
|
29852
30074
|
"filename": "src/release/publisher.ts",
|
|
29853
|
-
"line":
|
|
30075
|
+
"line": 217
|
|
29854
30076
|
},
|
|
29855
30077
|
"name": "publishToNuget",
|
|
29856
30078
|
"parameters": [
|
|
@@ -29873,7 +30095,7 @@
|
|
|
29873
30095
|
},
|
|
29874
30096
|
"locationInModule": {
|
|
29875
30097
|
"filename": "src/release/publisher.ts",
|
|
29876
|
-
"line":
|
|
30098
|
+
"line": 270
|
|
29877
30099
|
},
|
|
29878
30100
|
"name": "publishToPyPi",
|
|
29879
30101
|
"parameters": [
|
|
@@ -30113,7 +30335,7 @@
|
|
|
30113
30335
|
"kind": "interface",
|
|
30114
30336
|
"locationInModule": {
|
|
30115
30337
|
"filename": "src/release/publisher.ts",
|
|
30116
|
-
"line":
|
|
30338
|
+
"line": 529
|
|
30117
30339
|
},
|
|
30118
30340
|
"name": "PyPiPublishOptions",
|
|
30119
30341
|
"namespace": "release",
|
|
@@ -30128,7 +30350,7 @@
|
|
|
30128
30350
|
"immutable": true,
|
|
30129
30351
|
"locationInModule": {
|
|
30130
30352
|
"filename": "src/release/publisher.ts",
|
|
30131
|
-
"line":
|
|
30353
|
+
"line": 547
|
|
30132
30354
|
},
|
|
30133
30355
|
"name": "twinePasswordSecret",
|
|
30134
30356
|
"optional": true,
|
|
@@ -30146,7 +30368,7 @@
|
|
|
30146
30368
|
"immutable": true,
|
|
30147
30369
|
"locationInModule": {
|
|
30148
30370
|
"filename": "src/release/publisher.ts",
|
|
30149
|
-
"line":
|
|
30371
|
+
"line": 535
|
|
30150
30372
|
},
|
|
30151
30373
|
"name": "twineRegistryUrl",
|
|
30152
30374
|
"optional": true,
|
|
@@ -30164,7 +30386,7 @@
|
|
|
30164
30386
|
"immutable": true,
|
|
30165
30387
|
"locationInModule": {
|
|
30166
30388
|
"filename": "src/release/publisher.ts",
|
|
30167
|
-
"line":
|
|
30389
|
+
"line": 541
|
|
30168
30390
|
},
|
|
30169
30391
|
"name": "twineUsernameSecret",
|
|
30170
30392
|
"optional": true,
|
|
@@ -34109,6 +34331,6 @@
|
|
|
34109
34331
|
"symbolId": "src/web/tailwind:TailwindConfigOptions"
|
|
34110
34332
|
}
|
|
34111
34333
|
},
|
|
34112
|
-
"version": "0.
|
|
34113
|
-
"fingerprint": "
|
|
34334
|
+
"version": "0.34.2",
|
|
34335
|
+
"fingerprint": "PN4FFB20RVWXhY3FSBWiGn3f/YPO3SNZbx3H0iKOaGI="
|
|
34114
34336
|
}
|