Skip to content

Commit

Permalink
feat(build): add dev server config
Browse files Browse the repository at this point in the history
  • Loading branch information
Coly010 committed Sep 23, 2024
1 parent 7fb465d commit cb734b7
Show file tree
Hide file tree
Showing 5 changed files with 1,524 additions and 68 deletions.
23 changes: 5 additions & 18 deletions nx.json
Original file line number Diff line number Diff line change
@@ -1,39 +1,26 @@
{
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"namedInputs": {
"default": [
"{projectRoot}/**/*",
"sharedGlobals"
],
"default": ["{projectRoot}/**/*", "sharedGlobals"],
"production": [
"default",
"!{projectRoot}/.eslintrc.json",
"!{projectRoot}/eslint.config.js",
"!{projectRoot}/**/?(*.)+(spec|test).[jt]s?(x)?(.snap)",
"!{projectRoot}/tsconfig.spec.json"
],
"sharedGlobals": [
"{workspaceRoot}/.github/workflows/ci.yml"
]
"sharedGlobals": ["{workspaceRoot}/.github/workflows/ci.yml"]
},
"nxCloudId": "66eefdb36cb167023f936bca",
"targetDefaults": {
"@nx/js:swc": {
"cache": true,
"dependsOn": [
"^build"
],
"inputs": [
"production",
"^production"
]
"dependsOn": ["^build"],
"inputs": ["production", "^production"]
},
"@nx/vite:test": {
"cache": true,
"inputs": [
"default",
"^production"
]
"inputs": ["default", "^production"]
}
},
"release": {
Expand Down
Loading

0 comments on commit cb734b7

Please sign in to comment.