mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
e20a1e5a6d
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
143 lines
2.7 KiB
JSON
143 lines
2.7 KiB
JSON
{
|
|
"$schema": "https://nx.dev/reference/nx-json",
|
|
"namedInputs": {
|
|
"default": [
|
|
"{projectRoot}/**/*",
|
|
"!{projectRoot}/node_modules/**/*",
|
|
"!{projectRoot}/**/*.md",
|
|
"!{projectRoot}/**/*.yml",
|
|
"!{projectRoot}/**/*.yaml"
|
|
],
|
|
"production": [
|
|
"default",
|
|
"!{projectRoot}/**/*.test.*",
|
|
"!{projectRoot}/**/*.spec.*",
|
|
"!{projectRoot}/**/__tests__/**"
|
|
],
|
|
"test": [
|
|
"{projectRoot}/src/**/*.ts",
|
|
"{projectRoot}/src/**/*.tsx",
|
|
"{projectRoot}/**/__tests__/**",
|
|
"{projectRoot}/**/*.test.*",
|
|
"{projectRoot}/**/*.spec.*"
|
|
]
|
|
},
|
|
"targetDefaults": {
|
|
"build": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"inputs": [
|
|
"production",
|
|
"{projectRoot}/.env*"
|
|
],
|
|
"outputs": [
|
|
"{projectRoot}/dist/**"
|
|
],
|
|
"cache": true
|
|
},
|
|
"dev": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"cache": false
|
|
},
|
|
"test": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"inputs": [
|
|
"test"
|
|
],
|
|
"outputs": [
|
|
"{projectRoot}/coverage/**"
|
|
],
|
|
"cache": true
|
|
},
|
|
"test:watch": {
|
|
"cache": false
|
|
},
|
|
"test:coverage": {
|
|
"inputs": [
|
|
"test"
|
|
],
|
|
"outputs": [
|
|
"{projectRoot}/coverage/**"
|
|
],
|
|
"cache": true
|
|
},
|
|
"lint": {
|
|
"dependsOn": [
|
|
"^lint"
|
|
],
|
|
"cache": true
|
|
},
|
|
"check-types": {
|
|
"dependsOn": [
|
|
"^build",
|
|
"^check-types"
|
|
],
|
|
"cache": true
|
|
},
|
|
"generate-graphql-schema": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
"{projectRoot}/__snapshots__/**"
|
|
],
|
|
"cache": true
|
|
},
|
|
"graphql-codegen": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"cache": true
|
|
},
|
|
"link:global": {
|
|
"cache": false
|
|
},
|
|
"unlink:global": {
|
|
"cache": false
|
|
},
|
|
"build:css": {
|
|
"cache": true,
|
|
"outputs": [
|
|
"{projectRoot}/dist/styles.css",
|
|
"{projectRoot}/src/styles/generated.css"
|
|
]
|
|
},
|
|
"storybook:build": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
"{projectRoot}/storybook-static/**"
|
|
],
|
|
"cache": true
|
|
},
|
|
"publint": {
|
|
"dependsOn": [
|
|
"build"
|
|
],
|
|
"inputs": [
|
|
"{projectRoot}/package.json",
|
|
"{projectRoot}/dist/**"
|
|
],
|
|
"cache": true
|
|
},
|
|
"attw": {
|
|
"dependsOn": [
|
|
"build"
|
|
],
|
|
"inputs": [
|
|
"{projectRoot}/package.json",
|
|
"{projectRoot}/dist/**"
|
|
],
|
|
"cache": true
|
|
}
|
|
},
|
|
"parallel": 14,
|
|
"defaultBase": "main",
|
|
"nxCloudId": "69a1ceae0efc94d36e7f9044"
|
|
} |