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

82 lines
1.8 KiB
JSON
Raw Normal View History

2024-01-29 06:39:21 -05:00
{
2024-02-06 06:16:28 -05:00
"pluginsConfig": {
"@nx/js": {
"analyzeSourceFiles": true
}
},
2024-07-04 02:29:27 -05:00
"release": {
2024-08-07 01:57:51 -05:00
"projects": [
"libs/plugins-styles",
"libs/plugin-types",
"libs/plugins-runtime"
]
2024-07-04 02:29:27 -05:00
},
2024-01-29 06:39:21 -05:00
"extends": "nx/presets/npm.json",
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"targetDefaults": {
2024-07-04 02:29:27 -05:00
"nx-release-publish": {
"options": {
"packageRoot": "dist/{projectName}"
}
},
2024-02-06 03:07:17 -05:00
"@nx/vite:build": {
2024-02-01 08:08:51 -05:00
"cache": true,
2024-02-06 03:07:17 -05:00
"dependsOn": ["^build"],
2024-02-01 08:08:51 -05:00
"inputs": ["default", "^default"]
2024-02-22 08:40:18 -05:00
},
"@nx/esbuild:esbuild": {
"cache": true,
"dependsOn": ["^build"],
"inputs": ["default", "^default"]
},
"@nx/js:tsc": {
"cache": true,
"dependsOn": ["^build"],
"inputs": ["default", "^default"]
2024-04-23 05:33:38 -05:00
},
"@angular-devkit/build-angular:application": {
"cache": true,
"dependsOn": ["^build"],
"inputs": ["default", "^default"]
2024-02-01 08:08:51 -05:00
}
},
2024-02-06 03:07:17 -05:00
"plugins": [
2024-05-30 08:02:56 -05:00
{
2024-06-06 08:42:52 -05:00
"plugin": "./tools/plugins/plugin-tasks.ts"
2024-05-30 08:02:56 -05:00
},
2024-02-06 03:07:17 -05: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 06:16:28 -05:00
"generators": {
"@nx/web:application": {
"style": "css",
"linter": "eslint",
"unitTestRunner": "vitest",
2024-07-08 05:29:55 -05:00
"e2eTestRunner": "none",
"projectNameAndRootFormat": "as-provided",
"bundler": "vite"
2024-04-23 05:33:38 -05:00
},
"@nx/angular:application": {
"e2eTestRunner": "none",
"linter": "eslint",
"style": "css",
2024-07-08 05:29:55 -05:00
"unitTestRunner": "none",
"projectNameAndRootFormat": "as-provided"
2024-01-29 06:39:21 -05:00
}
}
}