mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
32 lines
777 B
JSON
32 lines
777 B
JSON
{
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
"sourceRoot": "packages/webpack",
|
|
"projectType": "library",
|
|
"generators": {},
|
|
"targets": {
|
|
"lint": {
|
|
"executor": "@nrwl/linter:eslint",
|
|
"options": {
|
|
"lintFilePatterns": []
|
|
}
|
|
},
|
|
"test": {
|
|
"executor": "@nrwl/workspace:run-commands",
|
|
"options": {
|
|
"commands": ["npm run tsc", "npm run jasmine"],
|
|
"cwd": "packages/webpack",
|
|
"parallel": false
|
|
}
|
|
},
|
|
"build": {
|
|
"executor": "@nrwl/workspace:run-commands",
|
|
"outputs": ["dist/packages"],
|
|
"options": {
|
|
"commands": ["npm run setup", "mkdir -p ../../dist/packages", "mv \"$(npm pack | tail -n 1)\" ../../dist/packages/nativescript-webpack.tgz"],
|
|
"cwd": "packages/webpack",
|
|
"parallel": false
|
|
}
|
|
}
|
|
}
|
|
}
|