Browse Source

Added Docusaurus

pull/3558/head
Christophe Trefois 1 year ago
parent
commit
54493b6029
  1. 30
      nx.json

30
nx.json

@ -16,12 +16,20 @@
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"targetDefaults": {
"build": {
"dependsOn": ["^build"],
"inputs": ["production", "^production"],
"dependsOn": [
"^build"
],
"inputs": [
"production",
"^production"
],
"cache": true
},
"e2e": {
"inputs": ["default", "^production"],
"inputs": [
"default",
"^production"
],
"cache": true
},
"build-storybook": {
@ -38,7 +46,11 @@
"cache": true
},
"@nx/jest:jest": {
"inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"],
"inputs": [
"default",
"^production",
"{workspaceRoot}/jest.preset.js"
],
"cache": true,
"options": {
"passWithNoTests": true
@ -52,7 +64,10 @@
}
},
"namedInputs": {
"default": ["{projectRoot}/**/*", "sharedGlobals"],
"default": [
"{projectRoot}/**/*",
"sharedGlobals"
],
"sharedGlobals": [
"{workspaceRoot}/angular.json",
"{workspaceRoot}/tsconfig.base.json",
@ -71,5 +86,8 @@
},
"nxCloudAccessToken": "Mjg0ZGQ2YjAtNGI4NS00NmYwLThhOWEtMWZmNmQzODM4YzU4fHJlYWQ=",
"parallel": 1,
"defaultBase": "origin/main"
"defaultBase": "origin/main",
"plugins": [
"nx/plugins/package-json"
]
}

Loading…
Cancel
Save