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
61 lines (61 loc) · 1.89 KB
/
turbo.json
File metadata and controls
61 lines (61 loc) · 1.89 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
{
"tasks": {
"clean": {
"cache": false
},
"build": {
"dependsOn": ["^build"],
"inputs": ["src/**", "tsconfig.json", "package.json", ".babelrc", "babel.config.js", "rollup.config.mjs"],
"outputs": ["dist/**", "lib/**", "react/**"],
"env": ["WRITE_MANGLED_PROPERTIES"]
},
"package": {
"cache": false,
"dependsOn": ["^package", "build"],
"inputs": ["dist/**", "package.json"],
"env": ["PACKAGE_DEST"]
},
"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
},
"posthog-js#generate-references": {
"dependsOn": ["build"],
"inputs": ["dist/**", "package.json", "scripts/**", "docs/**"],
"outputs": ["references/**"],
"cache": false
},
"posthog-node#generate-references": {
"dependsOn": ["build"],
"inputs": ["dist/**", "package.json", "scripts/**", "docs/**"],
"outputs": ["references/**"],
"cache": false
},
"posthog-react-native#generate-references": {
"dependsOn": ["build"],
"inputs": ["dist/**", "package.json", "scripts/**", "docs/**"],
"outputs": ["references/**"],
"cache": false
}
}
}