-
Notifications
You must be signed in to change notification settings - Fork 200
/
Copy path.projenrc.ts
263 lines (251 loc) · 6.17 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
import { MonorepoProject } from "@skyrpex/wingen";
import { TextFile } from "projen";
const PNPM_VERSION = "8.15.1";
const NODE_VERSION = "20.17.0";
// Use a monorepo project to manage the workspace.
const monorepo = new MonorepoProject({
name: "@winglang/monorepo",
devDeps: [
"@skyrpex/wingen",
"@winglang/compatibility-spy",
"bump-pack",
"generate-workspace",
],
});
// No need for tsconfig.json in the monorepo root.
monorepo.tryRemoveFile("tsconfig.json");
// Wingen manages the workspace file for us, but we still don't use projen to manage these workspace packages.
monorepo
.tryFindObjectFile("pnpm-workspace.yaml")
?.addToArray(
"packages",
"packages/*",
"packages/@wingcloud/*",
"packages/@winglang/*",
"packages/@winglibs/*",
"tools/*",
"docs",
"docs/docs",
"wing-console/packages/*",
"wing-console/console/*",
"wing-console/tools/*",
"tests/*",
"packages/@winglang/jsii-docgen/test/__fixtures__/**",
);
// Customize the turbo config. Ideally, the projen project should allow us to do this.
const turbo = monorepo.tryFindObjectFile("turbo.json");
turbo?.addOverride("globalDependencies", [
"*.json",
"*.toml",
".node-version",
"insta.yaml",
".github/workflows/build.yml",
"scripts/*",
"patches/*",
"tools/bump-pack/**",
"!tools/bump-pack/node_modules/**",
]);
turbo?.addOverride("tasks", {
default: {
inputs: ["*.json", ".projenrc.ts"],
},
compile: {
dependsOn: ["^compile"],
inputs: [
"bin/*",
"*.ts",
"*.js",
"*.cjs",
"*.json",
"*.toml",
"*.lock",
"src/**/*.rs",
"!src/**/*.test.ts",
"!src/**/*.test.tsx",
"src/**/*.ts",
"src/**/*.tsx",
],
},
test: {
dependsOn: ["compile"],
inputs: [
"*.ts",
"*.js",
"*.cjs",
"*.json",
"*.toml",
"*.lock",
"src/**/*.rs",
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.test.ts",
"src/**/*.test.tsx",
"test/**",
],
outputs: ["**/__snapshots__/**", "**/*.snap"],
},
bench: {
dependsOn: ["compile"],
inputs: [
"*.ts",
"*.js",
"*.cjs",
"*.json",
"*.toml",
"*.lock",
"src/**/*.rs",
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.test.ts",
"src/**/*.test.tsx",
"test/**",
],
},
"test:playwright": {
dependsOn: ["compile"],
inputs: [
"*.ts",
"*.js",
"*.cjs",
"*.json",
"*.toml",
"*.lock",
"src/**",
"test/**",
],
},
"post-compile": {
inputs: [""],
dependsOn: ["compile"],
},
lint: {
inputs: [
"*.ts",
"*.js",
"*.cjs",
"*.json",
"*.toml",
"*.lock",
"src/**/*.rs",
"src/**/*.ts",
"src/**/*.tsx",
"test/**",
],
},
eslint: {
inputs: [
"*.ts",
"*.js",
"*.cjs",
"*.json",
"*.toml",
"*.lock",
"src/**/*.rs",
"src/**/*.ts",
"src/**/*.tsx",
"test/**",
],
},
package: {
dependsOn: ["compile", "post-compile"],
env: ["PROJEN_BUMP_VERSION"],
inputs: ["*.md", "LICENSE"],
},
topo: {
inputs: ["**", "!node_modules/**", "!*/**/target/**"],
dependsOn: ["^topo"],
},
dev: {
cache: false,
persistent: true,
},
"wing:e2e": {
dependsOn: ["hangar#test"],
},
"wing:bench": {
dependsOn: ["hangar#bench"],
},
});
turbo?.addDeletionOverride("tasks.compile.outputs");
// Customize the tasks. Need to run some hacks in order to customize all of them.
monorepo.tasks.removeTask("build");
const buildTask = monorepo.addTask("build");
buildTask.spawn(monorepo.defaultTask!);
buildTask.exec("turbo compile post-compile lint eslint test package");
monorepo.tasks.removeTask("compile");
const compileTask = monorepo.addTask("compile");
compileTask.exec("turbo compile");
monorepo.testTask.reset("turbo lint eslint test");
monorepo.devTask.reset();
monorepo.addScript("package", "turbo package");
monorepo.addScript(
"package:ci",
"turbo package --color && tar -czvf dist/docs.tgz docs/*",
);
monorepo.addScript(
"test:ci",
"turbo default --color --concurrency 1 && turbo compile post-compile lint eslint test test:playwright --color --filter=!hangar",
);
monorepo.addScript("docs", "./scripts/docsite.sh");
monorepo.addScript("install", "bash scripts/setup_wasi.sh");
monorepo.addScript("postinstall", "link-bundles && generate-workspace");
monorepo.addScript(
"wing",
"turbo compile -F winglang --output-logs=new-only && ./packages/winglang/bin/wing",
);
// Specify engine and package manager versions.
monorepo.addFields({
packageManager: `pnpm@${PNPM_VERSION}`,
volta: {
node: NODE_VERSION,
pnpm: PNPM_VERSION,
},
});
new TextFile(monorepo, ".node-version", {
lines: [NODE_VERSION, ""],
});
new TextFile(monorepo, ".nvmrc", {
lines: [NODE_VERSION, ""],
});
// Specify pnpm overrides and patches.
monorepo.addFields({
pnpm: {
overrides: {
mime: "^3.0.0",
"axios@>=0.8.1 <0.28.0": ">=0.28.0",
},
patchedDependencies: {
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]",
},
},
});
// Customize the gitignore.
monorepo.addGitIgnore("node_modules/");
monorepo.addGitIgnore(".DS_Store");
monorepo.addGitIgnore(".pnpm-store/");
// Terraform state files
monorepo.addGitIgnore("*.tfstate");
monorepo.addGitIgnore("*.tfstate.*");
// Generated wing output
monorepo.addGitIgnore("*.w.out/");
// Generated wingc .jsii binary cache
monorepo.addGitIgnore("**/*.jsii.speedy");
// cargo output
// will have compiled files and executables from cargo
monorepo.addGitIgnore("debug/");
monorepo.addGitIgnore("target/");
// Packaged npm files
monorepo.addGitIgnore("/dist/");
// These are backup files generated by rustfmt
monorepo.addGitIgnore("**/*.rs.bk");
// MSVC Windows builds of rustc generate these, which store debugging information
monorepo.addGitIgnore("*.pdb");
// turbo
monorepo.addGitIgnore(".turbo/");
// history
monorepo.addGitIgnore(".history/");
///////////////////////////////////////////////////////////////////////////////
monorepo.synth();