feat: add review

This commit is contained in:
2024-08-12 17:44:58 +02:00
parent 89e819ece1
commit e2bacc283d
43 changed files with 3276 additions and 887 deletions

39
nx.json
View File

@@ -19,7 +19,22 @@
"cache": true
},
"e2e": {
"cache": true
"cache": true,
"inputs": ["default", "^production"]
},
"@nx/js:tsc": {
"cache": true,
"dependsOn": ["^build"],
"inputs": ["production", "^production"]
},
"@nx/vite:test": {
"cache": true,
"inputs": ["default", "^production"]
},
"@nx/vite:build": {
"cache": true,
"dependsOn": ["^build"],
"inputs": ["production", "^production"]
}
},
"namedInputs": {
@@ -38,5 +53,25 @@
],
"sharedGlobals": []
},
"useInferencePlugins": false
"useInferencePlugins": false,
"generators": {
"@nx/web:application": {
"style": "css",
"linter": "eslint",
"unitTestRunner": "jest",
"e2eTestRunner": "playwright"
}
},
"plugins": [
{
"plugin": "@nx/storybook/plugin",
"options": {
"buildStorybookTargetName": "build-storybook",
"serveStorybookTargetName": "storybook",
"staticStorybookTargetName": "static-storybook",
"testStorybookTargetName": "test-storybook"
},
"include": ["libs/reviews-stars/**/*"]
}
]
}