fal-js/libs/cli/project.json
Nader Dabit b76c371480
feat: add create app cli (#42)
* feat: add cli

* chore: removed log

* chore: update repo url

* chore: updated program name

* chore: updated program description

* chore: removed yarn lock files
2024-01-17 18:51:54 -08:00

42 lines
1.0 KiB
JSON

{
"name": "cli",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/cli/src",
"projectType": "library",
"targets": {
"build": {
"executor": "@nx/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/libs/cli",
"tsConfig": "libs/cli/tsconfig.lib.json",
"packageJson": "libs/cli/package.json",
"main": "libs/cli/src/index.ts",
"assets": ["LICENSE", "CODE_OF_CONDUCT.md", "libs/cli/README.md"]
}
},
"lint": {
"executor": "@nx/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["libs/cli/**/*.ts"]
}
},
"test": {
"executor": "@nx/jest:jest",
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
"options": {
"jestConfig": "libs/cli/jest.config.ts",
"passWithNoTests": true
},
"configurations": {
"ci": {
"ci": true,
"codeCoverage": true
}
}
}
},
"tags": []
}