forked from open-telemetry/opentelemetry-sandbox-web-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.ts
398 lines (365 loc) · 22 KB
/
config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
/*
* Copyright The OpenTelemetry Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { IRushCommandLine } from "./rush/rush";
import { IMergeDetail, IMergePackageDetail, IRepoSyncDetails } from "./support/types";
export const LICENSE_HEADER = "/*!\n" +
" * Copyright The OpenTelemetry Authors\n" +
" *\n" +
" * Licensed under the Apache License, Version 2.0 (the \"License\");\n" +
" * you may not use this file except in compliance with the License.\n" +
" * You may obtain a copy of the License at\n" +
" *\n" +
" * http://www.apache.org/licenses/LICENSE-2.0\n" +
" *\n" +
" * Unless required by applicable law or agreed to in writing, software\n" +
" * distributed under the License is distributed on an \"AS IS\" BASIS,\n" +
" * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n" +
" * See the License for the specific language governing permissions and\n" +
" * limitations under the License.\n" +
"*/\n\n";
/**
* This identifies both the initial source and the final destination for the merge.
* ie. The created PR will be created to merge back into this repo
*/
export const MERGE_ORIGIN_REPO = "open-telemetry/opentelemetry-sandbox-web-js";
/**
* Identifies both the initial source and final destination branch for the merge
* ie. The created PR will be created to merger back into this branch for the Origin Repo
*/
export const MERGE_ORIGIN_MERGE_MAIN_BRANCH = "main";
/**
* Identifies both the initial source and final destination branch for the merge
* ie. The created PR will be created to merger back into this branch for the Origin Repo
*/
export const MERGE_ORIGIN_STAGING_BRANCH = "auto-merge/repo-staging";
/**
* Identifies the working repo to use as the destination fork
*/
export const MERGE_FORK_REPO = "open-telemetry/opentelemetry-sandbox-web-js";
/**
* The local relative location to generate the local fork and merge repos
*/
export const MERGE_CLONE_LOCATION = ".auto-merge/temp";
/**
* The base folder where all of the repositories being merged will be located into.
*/
export const MERGE_DEST_BASE_FOLDER = "auto-merge";
/**
* The prefix to apply to all local branches
*/
export const BRANCH_PREFIX = "auto-merge";
/**
* When Committing to the local branches add this as the prefix
*/
export const COMMIT_PREFIX = "[AutoMerge]";
/**
* The main project name
*/
export const SANDBOX_PROJECT_NAME = "opentelemetry-sandbox-web-js";
/**
* Identifies the master source repositories to me merged into the `MERGE_DEST_BASE_FOLDER`
* of the destination repo `MERGE_ORIGIN_STAGING_BRANCH`
* The contrib repo if needed to be merged, just needs to be added here
*/
export const reposToSyncAndMerge: IRepoSyncDetails = {
"otel-js": {
url: "https://github.com/open-telemetry/opentelemetry-js",
branch: "main",
//mergeStartPoint: "HEAD", // Used for local testing to validate periodic execution
//branchStartPoint: "e91cac503c0bab95b429ff3c4b23249653882054",
destFolder: MERGE_DEST_BASE_FOLDER + "/js"
},
"otel-js-contrib": {
url: "https://github.com/open-telemetry/opentelemetry-js-contrib",
branch: "main",
//mergeStartPoint: "HEAD", // Used for local testing to validate periodic execution
//branchStartPoint: "35226602b92a7587f16a1eb959e4f3b3948f6e9d",
destFolder: MERGE_DEST_BASE_FOLDER + "/contrib"
}
};
/**
* Identifies the web packages that should be merged from the staging branch to main and the
* location that the package should be moved to.
*/
export const foldersToMerge: IMergePackageDetail[] = [
{ name: "@opentelemetry/api", destPath: "pkgs/api/", srcPath: "auto-merge/js/api", bundleName: "otel-sndbx.api", bundleNamespace: "opentelemetry.sandbox.web.api" },
{ name: "@opentelemetry/semantic-conventions", destPath: "pkgs/semantic-conventions/", srcPath: "auto-merge/js/packages/opentelemetry-semantic-conventions/", bundleName: "otel-sndbx.semantic-conventions", bundleNamespace: "opentelemetry.sandbox.web.semantic-conventions", noTests: true },
{ name: "@opentelemetry/core", destPath: "pkgs/core/", srcPath: "auto-merge/js/packages/opentelemetry-core/", bundleName: "otel-sndbx.core", bundleNamespace: "opentelemetry.sandbox.web.core" },
{ name: "@opentelemetry/resources", destPath: "pkgs/resources/", srcPath: "auto-merge/js/packages/opentelemetry-resources/", bundleName: "otel-sndbx.resources", bundleNamespace: "opentelemetry.sandbox.web.resources" },
{ name: "@opentelemetry/context-zone-peer-dep", destPath: "pkgs/context/zone-peer-dep/", srcPath: "auto-merge/js/packages/opentelemetry-context-zone-peer-dep/", bundleName: "otel-sndbx.context-zone-peer-dep", bundleNamespace: "opentelemetry.sandbox.web.context-zone-peer-dep", noWorkerTests: true, noNodeTests: true },
{ name: "@opentelemetry/context-zone", destPath: "pkgs/context/zone/", srcPath: "auto-merge/js/packages/opentelemetry-context-zone/", bundleName: "otel-sndbx.context-zone", bundleNamespace: "opentelemetry.sandbox.web.context-zone", noTests: true },
// //{ name: "@opentelemetry/context-async-hooks", destPath: "pkgs/context/async-hooks/", srcPath: "auto-merge/js/packages/opentelemetry-context-async-hooks/", bundleName: "otel-sndbx.context-zone-async-hooks", bundleNamespace: "opentelemetry.sandbox.web.context-zone-async-hooks" },
{ name: "@opentelemetry/propagator-b3", destPath: "pkgs/propagators/b3/", srcPath: "auto-merge/js/packages/opentelemetry-propagator-b3/", bundleName: "otel-sndbx.propagator-b3", bundleNamespace: "opentelemetry.sandbox.web.propagator-b3", noWorkerTests: true },
{ name: "@opentelemetry/sdk-trace-base", destPath: "pkgs/sdk/trace/base/", srcPath: "auto-merge/js/packages/opentelemetry-sdk-trace-base/", bundleName: "otel-sndbx.sdk-trace-base", bundleNamespace: "opentelemetry.sandbox.web.sdk-trace-base", noWorkerTests: true /* To be fixed in core repo */, noNodeTests: true },
{ name: "@opentelemetry/sdk-trace-web", destPath: "pkgs/sdk/trace/web/", srcPath: "auto-merge/js/packages/opentelemetry-sdk-trace-web/", bundleName: "otel-sndbx.sdk-trace-web", bundleNamespace: "opentelemetry.sandbox.web.sdk-trace-web", noWorkerTests: true /* To be fixed in core repo */, noNodeTests: true },
{ name: "@opentelemetry/sdk-metrics", destPath: "pkgs/sdk/metrics/", srcPath: "auto-merge/js/packages/sdk-metrics/", bundleName: "otel-sndbx.sdk-metrics", bundleNamespace: "opentelemetry.sandbox.web.sdk-metrics" },
{ name: "@opentelemetry/sdk-logs", destPath: "pkgs/sdk/logs/", srcPath: "auto-merge/js/experimental/packages/sdk-logs/", bundleName: "otel-sndbx.sdk-logs", bundleNamespace: "opentelemetry.sandbox.sdk-logs" },
{ name: "@opentelemetry/otlp-exporter-base", destPath: "pkgs/exporters/otlp/base/", srcPath: "auto-merge/js/experimental/packages/otlp-exporter-base", bundleName: "otel-exprtr.otlp-base", bundleNamespace: "opentelemetry.sandbox.exporter.otlp-base" },
{ name: "@opentelemetry/otlp-transformer", destPath: "pkgs/exporters/otlp/transformer", srcPath: "auto-merge/js/experimental/packages/otlp-transformer", bundleName: "otel-exprtr.otlp-transformer", bundleNamespace: "opentelemetry.sandbox.exporter.otlp-transformer" },
{ name: "@opentelemetry/otlp-proto-exporter-base", destPath: "pkgs/exporters/otlp/proto-base", srcPath: "auto-merge/js/experimental/packages/otlp-proto-exporter-base", bundleName: "otel-exprtr.otlp-proto-base", bundleNamespace: "opentelemetry.sandbox.exporter.otlp-proto-base", noTests: true,
submodules: [
{
path: "protos",
url: "https://github.com/open-telemetry/opentelemetry-proto.git"
}
]
},
// // { name: "@opentelemetry/exporter-trace-otlp-grpc", destPath: "pkgs/exporters/otlp/trace-grpc/", srcPath: "auto-merge/js/experimental/packages/exporter-trace-otlp-grpc/" },
// // { name: "@opentelemetry/exporter-jaeger", destPath: "pkgs/exporters/jaeger/", srcPath: "auto-merge/js/packages/opentelemetry-exporter-jaeger/" },
{ name: "@opentelemetry/exporter-zipkin", destPath: "pkgs/exporters/zipkin/", srcPath: "auto-merge/js/packages/opentelemetry-exporter-zipkin/", bundleName: "otel-exprtr.zipkin", bundleNamespace: "opentelemetry.sandbox.exporter.zipkin" },
{ name: "@opentelemetry/exporter-trace-otlp-proto", destPath: "pkgs/exporters/otlp/trace/proto/", srcPath: "auto-merge/js/experimental/packages/exporter-trace-otlp-proto", bundleName: "otel-exprtr.trace-otlp-proto", bundleNamespace: "opentelemetry.sandbox.exporter.trace-otlp-proto", noNodeTests: true },
{ name: "@opentelemetry/exporter-trace-otlp-http", destPath: "pkgs/exporters/otlp/trace/http/", srcPath: "auto-merge/js/experimental/packages/exporter-trace-otlp-http", bundleName: "otel-exprtr.trace-otlp-http", bundleNamespace: "opentelemetry.sandbox.exporter.trace-otlp-http" },
{ name: "@opentelemetry/exporter-metrics-otlp-http", destPath: "pkgs/exporters/otlp/metrics/http/", srcPath: "auto-merge/js/experimental/packages/opentelemetry-exporter-metrics-otlp-http", bundleName: "otel-exprtr.metrics-otlp-http", bundleNamespace: "opentelemetry.sandbox.exporter.metrics-otlp-http" },
{ name: "@opentelemetry/exporter-logs-otlp-proto", destPath: "pkgs/exporters/otlp/logs/proto/", srcPath: "auto-merge/js/experimental/packages/exporter-logs-otlp-proto", bundleName: "otel-exprtr.logs-otlp-proto", bundleNamespace: "opentelemetry.sandbox.exporter.logs-otlp-proto" },
{ name: "@opentelemetry/exporter-logs-otlp-http", destPath: "pkgs/exporters/otlp/logs/http/", srcPath: "auto-merge/js/experimental/packages/exporter-logs-otlp-http", bundleName: "otel-exprtr.logs-otlp-http", bundleNamespace: "opentelemetry.sandbox.exporter.logs-otlp-http" },
{ name: "@opentelemetry/instrumentation", destPath: "pkgs/instrumentations/instrumentation/", srcPath: "auto-merge/js/experimental/packages/opentelemetry-instrumentation/", bundleName: "otel-sndbx.instrumentation", bundleNamespace: "opentelemetry.sandbox.web.instrumentation" },
{ name: "@opentelemetry/instrumentation-fetch", destPath: "pkgs/instrumentations/web/fetch", srcPath: "auto-merge/js/experimental/packages/opentelemetry-instrumentation-fetch/", bundleName: "otel-sndbx.instr.fetch", bundleNamespace: "opentelemetry.sandbox.instr.web.fetch", noNodeTests: true },
{ name: "@opentelemetry/instrumentation-xml-http-request", destPath: "pkgs/instrumentations/web/xhr", srcPath: "auto-merge/js/experimental/packages/opentelemetry-instrumentation-xml-http-request/", bundleName: "otel-sndbx.instr.xhr", bundleNamespace: "opentelemetry.sandbox.instr.web.xhr", noWorkerTests: true, noNodeTests: true },
{ name: "@opentelemetry/instrumentation-document-load", destPath: "pkgs/instrumentations/web/document-load/", srcPath: "auto-merge/contrib/plugins/web/opentelemetry-instrumentation-document-load/", bundleName: "otel-sndbx.instr-doc-load", bundleNamespace: "opentelemetry.sandbox.instr.web.instrumentation-document-load", noWorkerTests: true, noNodeTests: true },
{ name: "@opentelemetry/instrumentation-user-interaction", destPath: "pkgs/instrumentations/web/user-interaction/", srcPath: "auto-merge/contrib/plugins/web/opentelemetry-instrumentation-user-interaction/", bundleName: "otel-sndbx.instr-user-interaction", bundleNamespace: "opentelemetry.sandbox.instr.web.instrumentation-user-interaction", noWorkerTests: true, noNodeTests: true },
{ name: "@opentelemetry/instrumentation-long-task", destPath: "pkgs/instrumentations/web/long-task/", srcPath: "auto-merge/contrib/plugins/web/opentelemetry-instrumentation-long-task/", bundleName: "otel-sndbx.instr-long-task", bundleNamespace: "opentelemetry.sandbox.instr.web.instrumentation-long-task", noWorkerTests: true, noNodeTests: true },
{ name: "@opentelemetry/auto-instrumentations-web", destPath: "pkgs/instrumentations/web/auto/", srcPath: "auto-merge/contrib/metapackages/auto-instrumentations-web/", bundleName: "otel-sndbx.instr-auto", bundleNamespace: "opentelemetry.sandbox.instr.web.auto", noWorkerTests: true, noNodeTests: true },
{ name: "@opentelemetry/opentelemetry-browser-detector", destPath: "pkgs/detectors/browser/", srcPath: "auto-merge/js/experimental/packages/opentelemetry-browser-detector/", bundleName: "otel-sndbx.detect-browser", bundleNamespace: "opentelemetry.sandbox.detector.browser", noWorkerTests: true },
{ name: "@opentelemetry/api-logs", destPath: "pkgs/api-logs/", srcPath: "auto-merge/js/experimental/packages/api-logs/", bundleName: "otel-sndbx.api-logs", bundleNamespace: "opentelemetry.sandbox.api-logs", noWorkerTests: true, noBrowserTests: true },
{ name: "@opentelemetry/api-events", destPath: "pkgs/api-events/", srcPath: "auto-merge/js/experimental/packages/api-events/", bundleName: "otel-sndbx.api-events", bundleNamespace: "opentelemetry.sandbox.api-events", noWorkerTests: true, noBrowserTests: true },
// Examples
// Disabling the conversion of the contrib-js examples as there are conflicting version issues with webpack-dev-server that prevents the contrib version from running
//{ name: "web-examples", destPath: "examples/web/contrib/", srcPath: "auto-merge/contrib/examples/web/", bundleName: "otel-sndbx.contrib-examples", bundleNamespace: "opentelemetry.sandbox.contrib.examples", noTests: true, noLint: true, noVersion: true, noBuild: true },
{ name: "web-opentelemetry-example", destPath: "examples/web/js/", srcPath: "auto-merge/js/examples/opentelemetry-web/", bundleName: "otel-sndbx.js-examples", bundleNamespace: "opentelemetry.sandbox.js.examples", noTests: true, noLint: true, noVersion: true, noBuild: true }
];
/**
* Merge these files to the destination location
*/
export const filesToMerge: IMergeDetail[] = [
{ srcPath: "auto-merge/js/.markdownlint.json", destPath: ".markdownlint.json" },
{ srcPath: "auto-merge/js/eslint.base.js", destPath: "eslint.base.js", optional: true },
{ srcPath: "auto-merge/js/karma.base.js", destPath: "karma.base.js" },
{ srcPath: "auto-merge/js/karma.webpack.js", destPath: "karma.webpack.js" },
{ srcPath: "auto-merge/js/karma.worker.js", destPath: "karma.worker.js" },
{ srcPath: "auto-merge/js/tsconfig.base.es5.json", destPath: "tsconfig.base.es5.json", optional: true },
{ srcPath: "auto-merge/js/tsconfig.base.esm.json", destPath: "tsconfig.base.esm.json", optional: true },
{ srcPath: "auto-merge/js/tsconfig.base.esnext.json", destPath: "tsconfig.base.esnext.json" },
{ srcPath: "auto-merge/js/tsconfig.base.json", destPath: "tsconfig.base.json" },
{ srcPath: "auto-merge/js/tsconfig.es5.json", destPath: "tsconfig.es5.json", optional: true },
{ srcPath: "auto-merge/js/tsconfig.esm.json", destPath: "tsconfig.esm.json", optional: true },
{ srcPath: "auto-merge/js/tsconfig.esnext.json", destPath: "tsconfig.esnext.json", optional: true },
{ srcPath: "auto-merge/js/tsconfig.json", destPath: "tsconfig.json" },
{ srcPath: "auto-merge/js/webpack.node-polyfills.js", destPath: "webpack.node-polyfills.js" },
{ srcPath: "auto-merge/js/prettier.config.js", destPath: "prettier.config.js" }
];
/**
* Files to remove from staging
*/
export const filesToCleanup: IMergeDetail[] = [
{ destPath: "eslint.config.js" },
];
/**
* Files to remove after merging
*/
export const mergeFilesToCleanup: IMergeDetail[] = [
{ destPath: "eslint.config.js" },
];
/**
* Repo root files to check for bad merging
*/
export const fixBadMergeRootFiles: string[] = [
".gitmodules"
];
/**
* Enforce these versions when specified (required, dev or peer)
*/
export let dependencyVersions = {
"@types/mocha": "^10.0.0",
"@types/node": "^18.14.2",
"@types/sinon": "^10.0.13",
"@types/webpack-env": "1.16.3",
"@types/jquery": "^3.5.14",
"@typescript-eslint/eslint-plugin": "5.59.11",
"@typescript-eslint/parser": "5.59.11",
"zone.js": "^0.11.4",
"prettier": "2.8.8",
"typescript": "^4.9.5"
};
/**
* Add these missing dev dependencies
*/
export let addMissingDevDeps = {
"@types/mocha": "^10.0.0",
"@types/node": "^18.14.2",
"@types/sinon": "^10.0.13",
"@types/webpack-env": "1.16.3",
"@types/jquery": "^3.5.14",
"karma-mocha-webworker": "1.3.0",
"@typescript-eslint/eslint-plugin": "5.59.11",
"@typescript-eslint/parser": "5.59.11",
"babel-loader": "8.3.0",
"babel-plugin-istanbul": "6.1.1",
"eslint": "8.46.0",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-node": "11.1.0",
"prettier": "2.8.8",
"typedoc": "^0.23.26",
"typedoc-plugin-missing-exports": "^1.0.0",
"typedoc-plugin-resolve-crossmodule-references": "^0.3.3"
};
/**
* Remove these dependencies (required or dev)
*/
export let dropDependencies = {
"lerna": true,
"rimraf": true
};
/**
* Add these scripts to the root package.json
*/
export let initScripts = {
"build": "rush build --verbose", // This will compile and package (bundle)
"rebuild": "rush rebuild --verbose", // clean, compile and package
"compile": "rush compile --verbose", // Run compile target for all projects -- auto lints and compiles
"postinstall": "rush update",
"test": "rush test --verbose",
"lint": "rush lint --verbose",
"lint:fix": "rush lint:fix --verbose",
"rush-update": "rush update --recheck --purge --full",
"rush-purge": "rush purge",
"fullClean": "git clean -xdf && npm install && rush update --recheck --full",
"fullCleanBuild": "npm run fullClean && npm run rebuild"
};
/**
* Remove these scripts if present
*/
export let cleanupScripts = {
};
/**
* Add these dev dependencies to the root package.json
*/
export let initDevDependencyVersions = {
"@microsoft/rush": "5.93.1",
"markdownlint-cli": "^0.31.1",
"typedoc": "^0.23.26",
"codecov": "^3.8.3",
"rollup": "^3.10.0",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.2",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-minify-es": "^1.1.1",
"uglify-js": "^3.17.4",
"typescript": "^4.9.5"
};
/**
* Add these dev dependencies to ALL processed package.json files
*/
export let commonDevDependencyVersions = {
"@typescript-eslint/eslint-plugin": "5.59.11",
"@typescript-eslint/parser": "5.59.11",
"eslint": "8.46.0",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-node": "11.1.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"istanbul-instrumenter-loader": "3.0.1",
"karma": "6.3.16",
"karma-chrome-launcher": "3.1.0",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-mocha": "^2.0.1",
"karma-spec-reporter": "^0.0.34",
"karma-webpack": "^4.0.2",
"karma-typescript": "^5.5.3",
"mocha": "10.0.0",
"chromium": "^3.0.3",
"prettier": "2.8.8",
"puppeteer": "^14.2.1",
"sinon": "^14.0.0",
"nyc": "^15.1.0",
"ts-loader": "8.4.0",
"ts-mocha": "10.0.0",
"typescript": "^4.9.5",
"webpack": "^4.46.0",
"pako": "^2.0.3"
};
export let rootDevDependencies = {
"@typescript-eslint/eslint-plugin": "5.59.11",
"@typescript-eslint/parser": "5.59.11",
"eslint": "8.46.0",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-node": "11.1.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1"
};
export const mergeRushCommandLine: { [name: string]: IRushCommandLine } = {
build: {
commandKind: "bulk",
summary: "Run all build targets for all packages",
enableParallelism: true,
allowWarningsInSuccessfulBuild: true
},
rebuild: {
commandKind: "bulk",
summary: "Run all build targets for all packages",
enableParallelism: true,
allowWarningsInSuccessfulBuild: true
},
compile: {
commandKind: "bulk",
summary: "Run all compile targets for all packages",
enableParallelism: true,
allowWarningsInSuccessfulBuild: true
},
lint: {
commandKind: "bulk",
summary: "Run all tslint for all packages",
description: "Runs tslint for all projects",
safeForSimultaneousRushProcesses: false,
enableParallelism: true,
ignoreMissingScript: false
},
"lint:fix": {
commandKind: "bulk",
summary: "Run all tslint for all packages",
description: "Runs tslint for all projects",
safeForSimultaneousRushProcesses: false,
enableParallelism: true,
ignoreMissingScript: false,
allowWarningsInSuccessfulBuild: true
},
test : {
commandKind: "bulk",
summary: "Run all tests for all packages",
description: "Runs tests for all projects",
safeForSimultaneousRushProcesses: false,
enableParallelism: false,
ignoreMissingScript: false,
allowWarningsInSuccessfulBuild: true
}
};
/**
* Apply any expected defaults to the provided configuration, this is a helper
* to ensure that the expected values (for the script) are always present
* @param theRepos - The IRepoSyncDetails to ensure that the defaults are set
*/
export function applyRepoDefaults(theRepos: IRepoSyncDetails) {
// Set default values
Object.keys(theRepos).forEach((repoName) => {
let repoDetails = theRepos[repoName];
repoDetails.destFolder = repoDetails.destFolder || MERGE_DEST_BASE_FOLDER + "/" + repoName;
repoDetails.mergeBranchName = repoDetails.mergeBranchName || BRANCH_PREFIX + "/" + repoName;
repoDetails.tagPrefix = repoDetails.tagPrefix || repoName;
// repoDetails.mergeStartPoint = repoDetails.mergeStartPoint || repoName + "/" + repoDetails.branch;
});
}