-
Notifications
You must be signed in to change notification settings - Fork 13
/
workspace.json
169 lines (169 loc) · 5.34 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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
{
"version": 2,
"projects": {
"blocks-html-parser": {
"root": "libs/blocks-html-parser",
"sourceRoot": "libs/blocks-html-parser/src",
"projectType": "library",
"targets": {
"build": {
"executor": "@nrwl/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/libs/blocks-html-parser",
"tsConfig": "libs/blocks-html-parser/tsconfig.lib.json",
"packageJson": "libs/blocks-html-parser/package.json",
"main": "libs/blocks-html-parser/src/index.ts",
"assets": ["libs/blocks-html-parser/*.md"]
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["libs/blocks-html-parser/**/*.ts"]
}
},
"test": {
"executor": "@nrwl/jest:jest",
"outputs": ["coverage/libs/blocks-html-parser"],
"options": {
"jestConfig": "libs/blocks-html-parser/jest.config.js",
"passWithNoTests": true
}
},
"publish": {
"executor": "@nrwl/workspace:run-commands",
"options": {
"command": "npm publish",
"cwd": "dist/libs/blocks-html-parser"
}
}
},
"tags": []
},
"blocks-markdown-parser": {
"root": "libs/blocks-markdown-parser",
"sourceRoot": "libs/blocks-markdown-parser/src",
"projectType": "library",
"targets": {
"build": {
"executor": "@nrwl/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/libs/blocks-markdown-parser",
"tsConfig": "libs/blocks-markdown-parser/tsconfig.lib.json",
"packageJson": "libs/blocks-markdown-parser/package.json",
"main": "libs/blocks-markdown-parser/src/index.ts",
"assets": ["libs/blocks-markdown-parser/*.md"]
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["libs/blocks-markdown-parser/**/*.ts"]
}
},
"test": {
"executor": "@nrwl/jest:jest",
"outputs": ["coverage/libs/blocks-markdown-parser"],
"options": {
"jestConfig": "libs/blocks-markdown-parser/jest.config.js",
"passWithNoTests": true
}
},
"publish": {
"executor": "@nrwl/workspace:run-commands",
"options": {
"command": "npm publish",
"cwd": "dist/libs/blocks-markdown-parser"
}
}
},
"tags": []
},
"scully-plugin-notion": {
"root": "libs/scully-plugin-notion",
"sourceRoot": "libs/scully-plugin-notion/src",
"projectType": "library",
"targets": {
"build": {
"executor": "@nrwl/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/libs/scully-plugin-notion",
"tsConfig": "libs/scully-plugin-notion/tsconfig.lib.json",
"packageJson": "libs/scully-plugin-notion/package.json",
"main": "libs/scully-plugin-notion/src/index.ts",
"assets": ["libs/scully-plugin-notion/*.md"]
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["libs/scully-plugin-notion/**/*.ts"]
}
},
"test": {
"executor": "@nrwl/jest:jest",
"outputs": ["coverage/libs/scully-plugin-notion"],
"options": {
"jestConfig": "libs/scully-plugin-notion/jest.config.js",
"passWithNoTests": true
}
},
"publish": {
"executor": "@nrwl/workspace:run-commands",
"options": {
"command": "npm publish",
"cwd": "dist/libs/scully-plugin-notion"
}
}
},
"tags": []
},
"v4-types": {
"root": "libs/v4-types",
"sourceRoot": "libs/v4-types/src",
"projectType": "library",
"targets": {
"build": {
"executor": "@nrwl/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/libs/v4-types",
"tsConfig": "libs/v4-types/tsconfig.lib.json",
"packageJson": "libs/v4-types/package.json",
"main": "libs/v4-types/src/index.ts",
"assets": ["libs/v4-types/*.md"]
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["libs/v4-types/**/*.ts"]
}
},
"test": {
"executor": "@nrwl/jest:jest",
"outputs": ["coverage/libs/v4-types"],
"options": {
"jestConfig": "libs/v4-types/jest.config.js",
"passWithNoTests": true
}
},
"publish": {
"executor": "@nrwl/workspace:run-commands",
"options": {
"command": "npm publish",
"cwd": "dist/libs/v4-types"
}
}
},
"tags": ["scope:v4-types", "type:lib"]
}
}
}