mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.8 KiB
53 lines
1.8 KiB
{
|
|
"name": "devkit",
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
"sourceRoot": "packages/devkit",
|
|
"projectType": "library",
|
|
"targets": {
|
|
"build": {
|
|
"outputs": ["{workspaceRoot}/dist/packages/devkit/README.md"],
|
|
"command": "node ./scripts/copy-readme.js devkit",
|
|
"dependsOn": ["^build", "build-base", "legacy-post-build"]
|
|
},
|
|
"legacy-post-build": {
|
|
"executor": "@nx/workspace-plugin:legacy-post-build",
|
|
"options": {
|
|
"tsConfig": "./tsconfig.lib.json",
|
|
"assets": [
|
|
{
|
|
"input": "packages/devkit",
|
|
"glob": "**/files/**",
|
|
"output": "/"
|
|
},
|
|
{
|
|
"input": "packages/devkit",
|
|
"glob": "**/files/**/.gitkeep",
|
|
"output": "/"
|
|
},
|
|
{
|
|
"input": "packages/devkit",
|
|
"glob": "**/*.json",
|
|
"ignore": ["**/tsconfig*.json", "project.json", ".eslintrc.json"],
|
|
"output": "/"
|
|
},
|
|
{
|
|
"input": "packages/devkit",
|
|
"glob": "**/*.js",
|
|
"ignore": ["**/jest.config.js"],
|
|
"output": "/"
|
|
},
|
|
{
|
|
"input": "packages/devkit",
|
|
"glob": "**/*.d.ts",
|
|
"output": "/"
|
|
},
|
|
{
|
|
"input": "",
|
|
"glob": "LICENSE",
|
|
"output": "/"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|