This repository has been archived by the owner on Jan 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathworkspace.json
65 lines (65 loc) · 2.03 KB
/
workspace.json
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
{
"version": 1,
"projects": {
"react-native-expo": {
"root": "packages/react-native-expo",
"sourceRoot": "packages/react-native-expo/src",
"projectType": "library",
"schematics": {},
"architect": {
"lint": {
"builder": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": [
"packages/react-native-expo/**/*.ts",
"packages/react-native-expo/**/*.spec.ts",
"packages/react-native-expo/**/*.spec.tsx",
"packages/react-native-expo/**/*.spec.js",
"packages/react-native-expo/**/*.spec.jsx",
"packages/react-native-expo/**/*.d.ts"
]
}
},
"test": {
"builder": "@nrwl/jest:jest",
"options": {
"jestConfig": "packages/react-native-expo/jest.config.js",
"passWithNoTests": true
},
"outputs": ["coverage/packages/react-native-expo"]
},
"build": {
"builder": "@nrwl/node:package",
"options": {
"outputPath": "dist/packages/react-native-expo",
"tsConfig": "packages/react-native-expo/tsconfig.lib.json",
"packageJson": "packages/react-native-expo/package.json",
"main": "packages/react-native-expo/src/index.ts",
"assets": [
"packages/react-native-expo/*.md",
{
"input": "./packages/react-native-expo/src",
"glob": "**/*.!(ts)",
"output": "./src"
},
{
"input": "./packages/react-native-expo",
"glob": "collection.json",
"output": "."
},
{
"input": "./packages/react-native-expo",
"glob": "builders.json",
"output": "."
}
]
},
"outputs": ["{options.outputPath}"]
}
}
}
},
"cli": {
"defaultCollection": "@nrwl/workspace"
}
}