-
Notifications
You must be signed in to change notification settings - Fork 3k
/
build.gradle
141 lines (111 loc) · 3.3 KB
/
build.gradle
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
plugins {
id 'java'
id 'distribution'
id 'com.github.node-gradle.node'
}
node {
// If true, it will download node using above parameters.
// If false, it will try to use globally installed node.
if (project.hasProperty('useSystemNode')) {
download = ! project.getProperty('useSystemNode').toBoolean()
} else {
download = true
}
// Version of node to use.
version = '21.2.0'
// Version of Yarn to use.
yarnVersion = '1.22.22'
// Base URL for fetching node distributions (set nodeDistBaseUrl if you have a mirror).
if (project.hasProperty('nodeDistBaseUrl')) {
distBaseUrl = project.getProperty('nodeDistBaseUrl')
} else {
distBaseUrl = 'https://nodejs.org/dist'
}
// Set the work directory for unpacking node
workDir = file("${project.projectDir}/.gradle/nodejs")
// Set the work directory for NPM
yarnWorkDir = file("${project.projectDir}/.gradle/yarn")
// Set the work directory where node_modules should be located
nodeProjectDir = file("${project.projectDir}")
}
/*
Wrappers around Yarn Tasks.
*/
task yarnInstall(type: YarnTask) {
args = ['install', '--network-timeout', '300000']
// The node_modules directory can contain built artifacts, so
// it's not really safe to cache it.
outputs.cacheIf { false }
inputs.files(
file('yarn.lock'),
file('package.json'),
)
outputs.dir('node_modules')
}
task yarnGenerate(type: YarnTask, dependsOn: yarnInstall) {
args = ['run', 'generate']
outputs.cacheIf { true }
inputs.files(
yarnInstall.inputs.files,
file('codegen.yml'),
project.fileTree(dir: "../datahub-graphql-core/src/main/resources/", include: "*.graphql"),
project.fileTree(dir: "src", include: "**/*.graphql"),
)
outputs.files(
project.fileTree(dir: "src", include: "**/*.generated.ts"),
)
}
task yarnServe(type: YarnTask, dependsOn: [yarnInstall, yarnGenerate]) {
args = ['run', 'start', '--proxy', 'http://localhost:9001']
}
task yarnTest(type: YarnTask, dependsOn: [yarnInstall, yarnGenerate]) {
// Explicitly runs in non-watch mode.
args = ['run', 'test', 'run']
}
task yarnLint(type: YarnTask, dependsOn: [yarnInstall, yarnGenerate]) {
args = ['run', 'lint']
}
test.dependsOn([yarnInstall, yarnTest, yarnLint])
task yarnLintFix(type: YarnTask, dependsOn: [yarnInstall, yarnGenerate]) {
args = ['run', 'lint-fix']
}
task yarnBuild(type: YarnTask, dependsOn: [yarnInstall, yarnGenerate]) {
environment = [NODE_OPTIONS: "--max-old-space-size=3072 --openssl-legacy-provider"]
args = ['run', 'build']
outputs.cacheIf { true }
inputs.files(
file('index.html'),
project.fileTree(dir: "src"),
project.fileTree(dir: "public"),
yarnInstall.inputs.files,
yarnGenerate.outputs.files,
file('.env'),
file('vite.config.ts'),
file('tsconfig.json'),
)
outputs.dir('dist')
}
task cleanExtraDirs {
delete 'node_modules/.yarn-integrity'
delete 'dist'
delete 'tmp'
delete 'just'
delete fileTree(dir: 'src', include: '*.generated.ts')
}
clean.finalizedBy(cleanExtraDirs)
configurations {
assets
}
distZip {
dependsOn yarnBuild
archiveFileName = "datahub-web-react-${archiveVersion}.${archiveExtension}"
from 'dist'
}
jar {
dependsOn distZip
into('public') {
from zipTree(distZip.outputs.files.first())
}
archiveClassifier = 'assets'
}
build.dependsOn jar