Skip to content

Commit

Permalink
doc: Demo
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieueveillard committed Dec 23, 2024
1 parent 0660aa5 commit c35d738
Show file tree
Hide file tree
Showing 33 changed files with 16,744 additions and 6,123 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,5 @@ Thumbs.db
.nx/workspace-data

vite.config.*.timestamp*
vitest.config.*.timestamp*
vitest.config.*.timestamp*
test-output
3 changes: 2 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"recommendations": [
"nrwl.angular-console",
"esbenp.prettier-vscode",
"dbaeumer.vscode-eslint"
"dbaeumer.vscode-eslint",
"ms-playwright.playwright"
]
}
34 changes: 34 additions & 0 deletions nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,51 @@
"options": {
"targetName": "lint"
}
},
{
"plugin": "@nx/webpack/plugin",
"options": {
"buildTargetName": "build",
"serveTargetName": "serve",
"previewTargetName": "preview"
}
},
{
"plugin": "@nx/playwright/plugin",
"options": {
"targetName": "e2e"
}
}
],
"targetDefaults": {
"@nx/vite:test": {
"cache": true,
"inputs": ["default", "^production"]
},
"e2e-ci--**/*": {
"dependsOn": ["^build"]
}
},
"release": {
"version": {
"preVersionCommand": "npx nx run-many -t build"
}
},
"generators": {
"@nx/react": {
"application": {
"babel": true,
"style": "css",
"linter": "eslint",
"bundler": "webpack"
},
"component": {
"style": "css"
},
"library": {
"style": "css",
"linter": "eslint"
}
}
}
}
Loading

0 comments on commit c35d738

Please sign in to comment.