forked from PostHog/posthog-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
58 lines (58 loc) · 1.53 KB
/
turbo.json
File metadata and controls
58 lines (58 loc) · 1.53 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
{
"tasks": {
"clean": {
"cache": false
},
"build": {
"dependsOn": ["^build"],
"inputs": [
"src/**",
"tsconfig.json",
"package.json",
".babelrc",
"babel.config.js",
"rollup.config.mjs",
"rslib.config.mjs"
],
"outputs": ["dist/**", "lib/**", "react/**"],
"env": ["WRITE_MANGLED_PROPERTIES"]
},
"package": {
"cache": false,
"dependsOn": ["^package", "build"],
"inputs": ["dist/**", "package.json"],
"env": ["PACKAGE_DEST"]
},
"@posthog/next#build": {
"dependsOn": ["^build", "@posthog/react#build"]
},
"posthog-js#package": {
"dependsOn": ["@posthog/react#build"],
"inputs": ["dist/**", "lib/**", "react/**"],
"env": ["PACKAGE_DEST"],
"cache": false
},
"lint": {
"dependsOn": []
},
"lint:fix": {
"dependsOn": []
},
"test:unit": {
"cache": false
},
"test:functional": {},
"test:e2e": {},
"test": {
"dependsOn": ["lint", "test:unit", "test:functional", "test:e2e"]
},
"dev": {
"cache": false,
"persistent": true
},
"generate-references": {
"dependsOn": ["build"],
"cache": false
}
}
}