Files
edgetunnel/apps/cf-worker-vless/project.json
zizifn 72567f8cbf add cf worker hello world project and enable deploy via GITHUB action (#78)
add cf worker hello world project and enable deploy via GITHUB action
2022-12-18 01:33:12 +08:00

24 lines
559 B
JSON

{
"name": "cf-worker-vless",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "apps/cf-worker-vless/src",
"projectType": "application",
"targets": {
"serve": {
"executor": "nx:run-commands",
"options": {
"command": "wrangler dev",
"cwd": "apps/cf-worker-vless"
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["apps/cf-worker-vless/**/*.ts"]
}
}
},
"tags": []
}