forked from tinesoft/nxrocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworkspace.json
150 lines (150 loc) · 4.42 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"version": 1,
"projects": {
"nx-spring-boot": {
"root": "packages/nx-spring-boot",
"sourceRoot": "packages/nx-spring-boot/src",
"projectType": "library",
"schematics": {},
"architect": {
"lint": {
"builder": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": ["packages/nx-spring-boot/**/*.ts"]
}
},
"test": {
"builder": "@nrwl/jest:jest",
"options": {
"jestConfig": "packages/nx-spring-boot/jest.config.js",
"passWithNoTests": true
}
},
"build": {
"builder": "@nrwl/node:package",
"options": {
"outputPath": "dist/packages/nx-spring-boot",
"tsConfig": "packages/nx-spring-boot/tsconfig.lib.json",
"packageJson": "packages/nx-spring-boot/package.json",
"main": "packages/nx-spring-boot/src/index.ts",
"assets": [
"packages/nx-spring-boot/*.md",
{
"input": "./packages/nx-spring-boot/src",
"glob": "**/*.!(ts)",
"output": "./src"
},
{
"input": "./packages/nx-spring-boot",
"glob": "collection.json",
"output": "."
},
{
"input": "./packages/nx-spring-boot",
"glob": "builders.json",
"output": "."
}
]
}
},
"release": {
"builder": "@nrwl/workspace:run-commands",
"options": {
"command": "npx semantic-release",
"cwd": "packages/nx-spring-boot"
}
}
}
},
"nx-spring-boot-e2e": {
"projectType": "application",
"root": "e2e/nx-spring-boot-e2e",
"sourceRoot": "e2e/nx-spring-boot-e2e/src",
"architect": {
"e2e": {
"builder": "@nrwl/nx-plugin:e2e",
"options": {
"target": "nx-spring-boot:build",
"npmPackageName": "@nxrocks/nx-spring-boot",
"pluginOutputPath": "dist/packages/nx-spring-boot",
"jestConfig": "e2e/nx-spring-boot-e2e/jest.config.js"
}
}
}
},
"nx-flutter": {
"root": "packages/nx-flutter",
"sourceRoot": "packages/nx-flutter/src",
"projectType": "library",
"schematics": {},
"architect": {
"lint": {
"builder": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": ["packages/nx-flutter/**/*.ts"]
}
},
"test": {
"builder": "@nrwl/jest:jest",
"options": {
"jestConfig": "packages/nx-flutter/jest.config.js",
"passWithNoTests": true
}
},
"build": {
"builder": "@nrwl/node:package",
"options": {
"outputPath": "dist/packages/nx-flutter",
"tsConfig": "packages/nx-flutter/tsconfig.lib.json",
"packageJson": "packages/nx-flutter/package.json",
"main": "packages/nx-flutter/src/index.ts",
"assets": [
"packages/nx-flutter/*.md",
{
"input": "./packages/nx-flutter/src",
"glob": "**/*.!(ts)",
"output": "./src"
},
{
"input": "./packages/nx-flutter",
"glob": "collection.json",
"output": "."
},
{
"input": "./packages/nx-flutter",
"glob": "builders.json",
"output": "."
}
]
}
},
"release": {
"builder": "@nrwl/workspace:run-commands",
"options": {
"command": "npx semantic-release",
"cwd": "packages/nx-flutter"
}
}
}
},
"nx-flutter-e2e": {
"projectType": "application",
"root": "e2e/nx-flutter-e2e",
"sourceRoot": "e2e/nx-flutter-e2e/src",
"architect": {
"e2e": {
"builder": "@nrwl/nx-plugin:e2e",
"options": {
"target": "nx-flutter:build",
"npmPackageName": "@nxrocks/nx-flutter",
"pluginOutputPath": "dist/packages/nx-flutter",
"jestConfig": "e2e/nx-flutter-e2e/jest.config.js"
}
}
}
}
},
"cli": {
"defaultCollection": "@nrwl/workspace"
}
}