-
Notifications
You must be signed in to change notification settings - Fork 0
/
lage.config.js
56 lines (56 loc) · 1.39 KB
/
lage.config.js
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
/*---------------------------------------------------------------------------------------------
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
* See LICENSE.md in the project root for license terms and full copyright notice.
*--------------------------------------------------------------------------------------------*/
/** @type {import("lage").ConfigOptions } */
module.exports = {
pipeline: {
build: {
dependsOn: ["^build"],
outputs: ["lib/**"],
inputs: ["src/**", "tsconfig*.json"],
},
cover: {
dependsOn: ["build"],
outputs: [],
inputs: ["lib/**", ".mocharc.json", ".nycrc"],
},
lint: {
dependsOn: ["build"],
outputs: [],
inputs: ["src/**", "eslint.config.cjs"],
},
docs: {
dependsOn: ["build"],
outputs: ["build/docs/**"],
inputs: ["src/**"],
},
"update-extractions": {
cache: false,
dependsOn: [],
outputs: ["learning/**"],
},
"check-extractions": {
cache: false,
dependsOn: [],
outputs: [],
},
"extract-api": {
dependsOn: ["build"],
outputs: ["api/**"],
inputs: ["lib/**"],
},
"check-internal": {
dependsOn: ["extract-api"],
outputs: [],
inputs: ["api/**"],
},
"validate-markdowns": {
cache: false,
},
clean: {
cache: false,
},
},
npmClient: "pnpm",
};