-
-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathturbo.json
More file actions
21 lines (20 loc) · 646 Bytes
/
turbo.json
File metadata and controls
21 lines (20 loc) · 646 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
// Additive to package.json and turbo.json
//
// https://turbo.build/repo/docs/core-concepts/caching/file-inputs#specifying-additional-inputs
"globalDependencies": ["pnpm-lock.yaml", "patches/*", ".github/*"],
"tasks": {
/////////////////////////////////////////////////
/////////////////////////////////////////////////
//
// Tests
//
/////////////////////////////////////////////////
/////////////////////////////////////////////////
"test:development": {
"inputs": ["addon/**", "index.js", "addon-main.*", "ember-cli-build.js"],
"outputs": [],
"dependsOn": []
}
}
}