-
Notifications
You must be signed in to change notification settings - Fork 15
/
.projenrc.ts
324 lines (287 loc) · 10.4 KB
/
.projenrc.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
import { javascript, JsonFile, JsonPatch, github, typescript, YamlFile } from 'projen';
import { BuildWorkflow } from './projenrc/build-workflow';
import { JsiiCalcFixtures } from './projenrc/fixtures';
import { ReleaseWorkflow } from './projenrc/release';
import { SUPPORT_POLICY, SupportPolicy } from './projenrc/support';
import { UpdateIntegPackage } from './projenrc/update-integ-package';
import { UpgradeDependencies } from './projenrc/upgrade-dependencies';
// See 'projenrc/support.ts' for TypeScript versions we are tracking. To add a new version:
//
// 1. Fork the current `main` to a maintenance branch:
// `git switch main && git fetch --all && git pull`
// `git push origin main:maintenance/vX.Y` (X.Y is the TS version that is about to be replaced by a new release)
// 2. Add a branch protection rule for the new maintenance branch.
// Copy the settings from the most recent maintenance branch.
// 3. Edit `projenrc/support.ts`, set maintenance EOL date for the new maintenance version to be 6 months from
// today (round up to the mid-point or end of month), make the new version current.
// 4. Update `minNodeVersion` to the oldest LTS version of Node (i.e. dropping support for EOL versions of Node)
// 5. Update the version list in the README (remember to remove EOS versions)
// 6. If any versions dropped into EOS, change the respective branch protection rule to include "Lock branch"
// 7. `npx projen`
// 8. `npx projen build` and resolve any new test failures that might be introduced by the new TS version
// 9. Create a PR, with title "feat: TypeScript X.Y"
// 10. Note that merging the PR doesn't trigger a release. Release are performed on a weekly schedule.
// You need to manually create a release by triggering this workflow:
// https://github.com/aws/jsii-compiler/actions/workflows/auto-tag-releases.yml
// 11. Perform new version steps for `jsii-rosetta`
const project = new typescript.TypeScriptProject({
projenrcTs: true,
name: 'jsii',
license: 'Apache-2.0',
authorName: 'Amazon Web Services',
authorUrl: 'https://aws.amazon.com',
homepage: 'https://aws.github.io/jsii',
repository: 'https://github.com/aws/jsii-compiler.git',
pullRequestTemplateContents: [
'',
'',
'---',
'',
'By submitting this pull request, I confirm that my contribution is made under the terms of the [Apache 2.0 license].',
'',
'[Apache 2.0 license]: https://www.apache.org/licenses/LICENSE-2.0',
],
autoDetectBin: true,
minNodeVersion: '18.12.0',
tsconfig: {
compilerOptions: {
// @see https://github.com/microsoft/TypeScript/wiki/Node-Target-Mapping
lib: ['es2020', 'es2021.WeakRef'],
target: 'ES2020',
esModuleInterop: false,
noImplicitOverride: true,
skipLibCheck: true,
moduleResolution: javascript.TypeScriptModuleResolution.NODE16,
module: 'node16',
sourceMap: true,
inlineSourceMap: false,
inlineSources: true,
},
},
tsconfigDev: {
compilerOptions: {
moduleResolution: javascript.TypeScriptModuleResolution.NODE16,
module: 'node16',
},
},
prettier: true,
prettierOptions: {
ignoreFile: false,
settings: {
bracketSpacing: true,
printWidth: 120,
quoteProps: javascript.QuoteProps.CONSISTENT,
semi: true,
singleQuote: true,
tabWidth: 2,
trailingComma: javascript.TrailingComma.ALL,
},
},
jestOptions: {
configFilePath: 'jest.config.json',
jestConfig: {
moduleFileExtensions: ['ts', 'tsx', 'js', 'json'],
watchPathIgnorePatterns: [
// NB: Those are regexes...
'<rootDir>/fixtures/\\..*',
'<rootDir>/fixtures/node_modules',
'<rootDir>/fixtures/.*\\.d\\.ts',
'<rootDir>/fixtures/.*\\.js',
'<rootDir>/fixtures/.*\\.map',
],
},
junitReporting: false,
},
buildWorkflow: false, // We have our own build workflow (need matrix test)
release: false, // We have our own release workflow
defaultReleaseBranch: 'main',
workflowNodeVersion: 'lts/*', // upgrade workflows should run on latest lts version
autoApproveUpgrades: true,
autoApproveOptions: {
allowedUsernames: ['aws-cdk-automation', 'github-bot'],
},
depsUpgrade: false, // We have our own custom upgrade workflow
vscode: true,
});
// PR validation should run on merge group, too...
(project.tryFindFile('.github/workflows/pull-request-lint.yml')! as YamlFile).patch(
JsonPatch.add('/on/merge_group', {}),
JsonPatch.add(
'/jobs/validate/steps/0/if',
"github.event == 'pull_request' || github.event_name == 'pull_request_target'",
),
);
new UpgradeDependencies(project, {
workflowOptions: {
branches: [
'main',
...Object.entries(SUPPORT_POLICY.maintenance).flatMap(([version, until]) => {
if (Date.now() > until.getTime()) {
return [];
}
return [`maintenance/v${version}`];
}),
],
labels: ['auto-approve'],
},
});
// VSCode will look at the "closest" file named "tsconfig.json" when deciding on which config to use
// for a given TypeScript file with the TypeScript language server. In order to make this "seamless"
// we'll be dropping `tsconfig.json` files at strategic locations in the project. These will not be
// committed as they are only here for VSCode comfort.
for (const dir of ['build-tools', 'projenrc', 'test']) {
new JsonFile(project, `${dir}/tsconfig.json`, {
allowComments: true,
committed: false,
marker: true,
obj: {
extends: '../tsconfig.dev.json',
references: [{ path: '../tsconfig.json' }],
},
readonly: true,
});
}
project.tsconfig?.file?.patch(
JsonPatch.add('/compilerOptions/composite', true),
JsonPatch.add('/compilerOptions/declarationMap', true),
);
// Don't show .gitignore'd files in the VSCode explorer
project.vscode!.settings.addSetting('explorer.excludeGitIgnore', true);
// Use the TypeScript SDK from the project dependencies
project.vscode!.settings.addSetting('typescript.tsdk', 'node_modules/typescript/lib');
// Format-on-save using ESLint
project.vscode!.extensions.addRecommendations('dbaeumer.vscode-eslint');
project.vscode!.settings.addSetting('editor.codeActionsOnSave', { 'source.fixAll.eslint': 'explicit' });
project.vscode!.settings.addSetting('eslint.validate', ['typescript']);
// Exports map...
project.package.addField('exports', {
'.': `./${project.package.entrypoint}`,
'./bin/jsii': './bin/jsii',
'./package.json': './package.json',
'./common': './lib/common/index.js',
});
// Remove TypeScript devDependency (it's a direct/normal dependency here)
project.deps.removeDependency('typescript');
// Modernize ts-jest configuration
if (project.jest?.config) {
project.jest.config.transform ??= {};
project.jest.config.transform['^.+\\.[t]sx?$'] = [
'ts-jest',
{
compiler: 'typescript',
tsconfig: 'tsconfig.dev.json',
diagnostics: { ignoreCodes: ['TS151001'] },
},
];
}
// Add fixtures & other exemptions to npmignore
project.npmignore?.addPatterns(
'/.*',
'/CODE_OF_CONDUCT.md',
'/CONTRIBUTING.md',
'/build-tools/',
'/fixtures/',
'/logo/',
'/projenrc/',
'*.tsbuildinfo',
'*.d.ts.map', // Declarations map aren't useful in published packages.
);
project.addDeps(
'@jsii/check-node',
'@jsii/spec',
'case',
'chalk@^4',
'fast-deep-equal',
'log4js',
'semver',
'semver-intersect',
'sort-json',
'spdx-license-list',
`typescript@~${SUPPORT_POLICY.current}`,
'yargs',
);
project.addDevDeps(
'@actions/core',
'@actions/github',
'@types/clone',
'@types/deep-equal',
'@types/lockfile',
'@types/semver',
'all-contributors-cli',
'clone',
'eslint-plugin-unicorn',
'fast-check',
'jsii-1.x@npm:jsii@1',
'lockfile',
'glob',
);
project.preCompileTask.exec('ts-node build-tools/code-gen.ts', {
name: 'code-gen',
});
project.gitignore.addPatterns('/src/version.ts', '/jsii-outdir/', '/test/negatives/.*');
project.gitignore.exclude('.DS_Store');
// Exclude negatives from tsconfig and eslint...
project.tsconfigDev.addExclude('test/negatives/**/*.ts');
project.eslint?.addIgnorePattern('test/negatives/**/*.ts');
// Customize ESLint rules
project.tsconfigDev.addInclude('build-tools/**/*.ts');
project.eslint!.rules!['no-bitwise'] = ['off']; // The TypeScript compiler API leverages some bit-flags.
(project.eslint!.rules!.quotes = ['error', 'single', { avoidEscape: true, allowTemplateLiterals: true }]),
// Add Unicorn rules (https://github.com/sindresorhus/eslint-plugin-unicorn#rules)
project.eslint?.addPlugins('unicorn');
project.eslint?.addRules({
'unicorn/prefer-node-protocol': ['error'],
'unicorn/no-array-for-each': ['error'],
'unicorn/no-unnecessary-await': ['error'],
});
// contributors:update
project.addTask('contributors:update', {
exec: 'all-contributors check | grep "Missing contributors" -A 1 | tail -n1 | sed -e "s/,//g" | xargs -n1 | grep -v "\\[bot\\]" | grep -v "aws-cdk-automation" | xargs -n1 -I{} all-contributors add {} code',
});
// Register jsii-calc stuff in the work stream
new JsiiCalcFixtures(project);
// Add Node.js version matrix test
new BuildWorkflow(project);
// Add support policy documents & release workflows
const supported = new SupportPolicy(project);
const releases = new ReleaseWorkflow(project)
.autoTag({
releaseLine: SUPPORT_POLICY.current,
preReleaseId: 'dev',
runName: 'Auto-Tag Prerelease (default branch)',
schedule: '0 0 * * 0,2-6', // Tuesday though sundays at midnight
})
.autoTag({
releaseLine: SUPPORT_POLICY.current,
runName: 'Auto-Tag Release (default branch)',
schedule: '0 0 * * 1', // Mondays at midnight
});
// We'll stagger release schedules so as to avoid everything going out at once.
let hour = 0;
for (const [version, branch] of Object.entries(supported.activeBranches(false))) {
// Stagger schedules every 5 hours, rolling. 5 was selected because it's co-prime to 24.
hour = (hour + 5) % 24;
const tag = `v${version}`;
releases
.autoTag({
releaseLine: version,
preReleaseId: 'dev',
runName: `Auto-Tag Prerelease (${tag})`,
schedule: `0 ${hour} * * 0,2-6`, // Tuesday though sundays
branch,
nameSuffix: tag,
})
.autoTag({
releaseLine: version,
runName: `Auto-Tag Release (${tag})`,
schedule: `0 ${hour} * * 1`, // Mondays
branch,
nameSuffix: tag,
});
}
// Allow PR backports to all maintained versions
new github.PullRequestBackport(project, {
branches: Object.values(supported.activeBranches()),
});
new UpdateIntegPackage(project);
project.synth();