You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ghost/nx.json

37 lines
879 B

{
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"namedInputs": {
"default": ["{projectRoot}/**/*", "{workspaceRoot}/ghost/tsconfig.json"]
},
"parallel": 4,
"targetDefaults": {
"build": {
"dependsOn": ["^build"],
"inputs": [
{
"env": "GHOST_CDN_URL"
},
"default",
"^default"
],
"outputs": [
"{projectRoot}/dist",
"{projectRoot}/es",
"{projectRoot}/types",
"{projectRoot}/umd"
],
"cache": true
},
"lint": {
"cache": true
},
"test": {
"cache": true
},
"test:unit": {
"cache": true
}
},
"cacheDirectory": ".nxcache"
}