Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement Admin API #337

Merged
merged 14 commits into from
Nov 25, 2024
Prev Previous commit
Next Next commit
fix(process-dev): update rumors-api intepreter
- because src/index.js actually import a TS file in its dep
- we need to specify --extensions, or babel will fail to resolve dep
MrOrz committed Nov 16, 2024
commit 8f46265a65eaf46df569889ba8cce9f1447339fc
3 changes: 2 additions & 1 deletion process-dev.json
Original file line number Diff line number Diff line change
@@ -3,7 +3,8 @@
"name": "rumors-api",
"script": "src/index.js",
"watch": ["src", "test"],
"interpreter": "./node_modules/.bin/babel-node"
"interpreter": "./node_modules/.bin/babel-node",
"interpreter_args": "--extensions .ts,.js"
}, {
"name": "rumors-admin-api",
"script": "src/adm/index.ts",