0
Fork 0
mirror of https://github.com/penpot/penpot-plugins.git synced 2025-01-20 13:43:15 -05:00
penpot-plugins/nx.json

67 lines
1.5 KiB
JSON
Raw Normal View History

2024-01-29 12:39:21 +01:00
{
2024-02-06 12:16:28 +01:00
"pluginsConfig": {
"@nx/js": {
"analyzeSourceFiles": true
}
},
2024-01-29 12:39:21 +01:00
"extends": "nx/presets/npm.json",
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"targetDefaults": {
2024-02-06 09:07:17 +01:00
"@nx/vite:build": {
2024-02-01 14:08:51 +01:00
"cache": true,
2024-02-06 09:07:17 +01:00
"dependsOn": ["^build"],
2024-02-01 14:08:51 +01:00
"inputs": ["default", "^default"]
2024-02-22 14:40:18 +01:00
},
"@nx/esbuild:esbuild": {
"cache": true,
"dependsOn": ["^build"],
"inputs": ["default", "^default"]
},
"@nx/js:tsc": {
"cache": true,
"dependsOn": ["^build"],
"inputs": ["default", "^default"]
2024-04-23 12:33:38 +02:00
},
"@angular-devkit/build-angular:application": {
"cache": true,
"dependsOn": ["^build"],
"inputs": ["default", "^default"]
2024-02-01 14:08:51 +01:00
}
},
2024-02-06 09:07:17 +01:00
"plugins": [
2024-05-30 15:02:56 +02:00
{
2024-06-06 15:42:52 +02:00
"plugin": "./tools/plugins/plugin-tasks.ts"
2024-05-30 15:02:56 +02:00
},
2024-02-06 09:07:17 +01:00
{
"plugin": "@nx/vite/plugin",
"options": {
"buildTargetName": "build",
"previewTargetName": "preview",
"testTargetName": "test",
"serveTargetName": "serve",
"serveStaticTargetName": "serve-static"
}
},
{
"plugin": "@nx/eslint/plugin",
"options": {
"targetName": "lint"
}
}
],
2024-02-06 12:16:28 +01:00
"generators": {
"@nx/web:application": {
"style": "css",
"linter": "eslint",
"unitTestRunner": "vitest",
"e2eTestRunner": "none"
2024-04-23 12:33:38 +02:00
},
"@nx/angular:application": {
"e2eTestRunner": "none",
"linter": "eslint",
"style": "css",
"unitTestRunner": "none"
2024-01-29 12:39:21 +01:00
}
}
}