-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathworkspace.json
61 lines (61 loc) · 2.11 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
{
"version": 2,
"cli": { "defaultCollection": "@nrwl/react" },
"generators": { "@nrwl/react": { "application": { "babel": true } } },
"projects": {
"grapesjs-react": {
"root": "libs/grapesjs-react",
"sourceRoot": "libs/grapesjs-react/src",
"projectType": "library",
"targets": {
"build": {
"executor": "@nrwl/web:package",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/libs/grapesjs-react",
"tsConfig": "libs/grapesjs-react/tsconfig.lib.json",
"project": "libs/grapesjs-react/package.json",
"entryFile": "libs/grapesjs-react/src/index.ts",
"external": ["react", "react-dom"],
"babelConfig": "@nrwl/react/plugins/bundle-babel",
"rollupConfig": "@nrwl/react/plugins/bundle-rollup",
"assets": [{ "glob": "README.md", "input": ".", "output": "." }]
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": ["libs/grapesjs-react/**/*.{ts,tsx,js,jsx}"]
}
},
"test": {
"executor": "@nrwl/jest:jest",
"outputs": ["coverage/libs/grapesjs-react"],
"options": {
"jestConfig": "libs/grapesjs-react/jest.config.js",
"passWithNoTests": true
}
},
"storybook": {
"executor": "@nrwl/storybook:storybook",
"options": {
"uiFramework": "@storybook/react",
"port": 4400,
"config": { "configFolder": "libs/grapesjs-react/.storybook" }
},
"configurations": { "ci": { "quiet": true } }
},
"build-storybook": {
"executor": "@nrwl/storybook:build",
"outputs": ["{options.outputPath}"],
"options": {
"uiFramework": "@storybook/react",
"outputPath": "dist/storybook/grapesjs-react",
"config": { "configFolder": "libs/grapesjs-react/.storybook" }
},
"configurations": { "ci": { "quiet": true } }
}
}
}
}
}