-
Notifications
You must be signed in to change notification settings - Fork 2.2k
/
lazy.config.ts
143 lines (141 loc) · 3.36 KB
/
lazy.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
import { LazyConfig } from 'lazyrepo'
const config = {
baseCacheConfig: {
include: [
'<rootDir>/package.json',
'<rootDir>/yarn.lock',
'<rootDir>/lazy.config.ts',
'<rootDir>/internal/config/**/*',
'<rootDir>/internal/scripts/**/*',
'package.json',
],
exclude: [
'<allWorkspaceDirs>/coverage/**/*',
'<allWorkspaceDirs>/dist*/**/*',
'<allWorkspaceDirs>/.next*/**/*',
'**/*.tsbuildinfo',
'<rootDir>/docs/gen/**/*',
],
},
scripts: {
build: {
baseCommand: 'exit 0',
runsAfter: { prebuild: {}, 'refresh-assets': {} },
workspaceOverrides: {
'apps/vscode/*': { runsAfter: { 'refresh-assets': {} } },
'packages/*': {
runsAfter: { 'build-api': { in: 'self-only' }, prebuild: { in: 'self-only' } },
cache: {
inputs: ['api/**/*', 'src/**/*'],
},
},
'apps/docs': {
runsAfter: { 'build-api': { in: 'all-packages' } },
cache: {
inputs: [
'app/**/*',
'api/**/*',
'components/**/*',
'public/**/*',
'scrips/**/*',
'styles/**/*',
'types/**/*',
'utils/**/*',
],
},
},
},
},
dev: {
execution: 'independent',
runsAfter: { predev: {}, 'refresh-assets': {} },
cache: 'none',
workspaceOverrides: {
'apps/vscode/*': { runsAfter: { build: { in: 'self-only' } } },
},
},
e2e: {
cache: 'none',
},
'e2e-x10': {
cache: 'none',
},
'test-ci': {
baseCommand: 'yarn run -T jest',
runsAfter: { 'refresh-assets': {} },
cache: {
inputs: {
exclude: ['*.tsbuildinfo'],
},
},
},
'test-coverage': {
baseCommand: 'yarn run -T jest --coverage',
runsAfter: { 'refresh-assets': {} },
},
lint: {
execution: 'independent',
runsAfter: { 'build-types': {} },
cache: {
inputs: {
exclude: ['*.tsbuildinfo'],
},
},
},
'pack-tarball': {
parallel: false,
},
'refresh-assets': {
execution: 'top-level',
baseCommand: `tsx <rootDir>/internal/scripts/refresh-assets.ts`,
cache: {
inputs: [
'package.json',
`<rootDir>/internal/scripts/refresh-assets.ts`,
`<rootDir>/assets/**/*`,
`<rootDir>/packages/*/package.json`,
],
},
},
'build-types': {
execution: 'top-level',
baseCommand: `tsx <rootDir>/internal/scripts/typecheck.ts`,
cache: {
inputs: {
include: ['<allWorkspaceDirs>/**/*.{ts,tsx}', '<allWorkspaceDirs>/tsconfig.json'],
exclude: ['<allWorkspaceDirs>/dist*/**/*', '<allWorkspaceDirs>/api/**/*'],
},
outputs: ['<allWorkspaceDirs>/*.tsbuildinfo', '<allWorkspaceDirs>/.tsbuild/**/*'],
},
runsAfter: {
'refresh-assets': {},
'maybe-clean-tsbuildinfo': {},
},
},
'build-api': {
execution: 'independent',
cache: {
inputs: ['.tsbuild/**/*.d.ts', 'tsconfig.json'],
outputs: ['api/**/*'],
},
runsAfter: {
'build-types': {
// Because build-types is top level, if usesOutput were set to true every
// build-api task would depend on all the .tsbuild files in the whole
// repo. So we set this to false and configure it to use only the
// local .tsbuild files
usesOutput: false,
},
},
},
'api-check': {
execution: 'top-level',
baseCommand: `tsx <rootDir>/internal/scripts/api-check.ts`,
runsAfter: { 'build-api': {} },
cache: {
inputs: [`<rootDir>/packages/*/api/public.d.ts`],
},
},
},
} satisfies LazyConfig
export default config