forked from tldraw/tldraw
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlazy.config.ts
More file actions
158 lines (156 loc) · 3.83 KB
/
lazy.config.ts
File metadata and controls
158 lines (156 loc) · 3.83 KB
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
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': {},
'build-eslint-plugin': {},
'build-i18n': {},
},
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': {}, 'build-eslint-plugin': {}, 'build-i18n': {} },
cache: 'none',
workspaceOverrides: {
'apps/vscode/*': { runsAfter: { build: { in: 'self-only' } } },
},
},
e2e: {
cache: 'none',
},
'e2e-x10': {
cache: 'none',
},
'build-eslint-plugin': {
execution: 'top-level',
baseCommand: 'cd internal/scripts/eslint && tsc -p tsconfig.json',
cache: {
inputs: [
'<rootDir>/internal/scripts/eslint/eslint-plugin.mts',
'<rootDir>/internal/scripts/eslint/tsconfig.json',
],
},
},
lint: {
execution: 'independent',
runsAfter: { 'build-types': {} },
cache: {
inputs: {
exclude: ['*.tsbuildinfo'],
},
},
},
context: {
execution: 'independent',
cache: 'none',
},
'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>/apps/dotcom/client/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': {},
'build-eslint-plugin': {},
'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,
},
},
},
'build-i18n': {
execution: 'independent',
cache: {
inputs: ['<rootDir>/apps/dotcom/client/public/tla/locales/*.json'],
outputs: ['<rootDir>/apps/dotcom/client/public/tla/locales-compiled/*.json'],
},
},
'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