File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
packages/create-tbk-app/templates/base/src/routes Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 3232 " Bash(then rm -rf test-standard)" ,
3333 " Bash(rm:*)" ,
3434 " Bash(mkdir:*)" ,
35- " Bash(pnpm --filter create-tbk-app typecheck:*)"
35+ " Bash(pnpm --filter create-tbk-app typecheck:*)" ,
36+ " Bash(pnpm --filter create-tbk-app build:*)"
3637 ],
3738 "deny" : [],
3839 "ask" : []
Original file line number Diff line number Diff line change @@ -3,15 +3,15 @@ import express from 'express';
33import authRouter, { AUTH_ROUTER_ROOT } from '../modules/auth/auth.router';
44import userRouter, { USER_ROUTER_ROOT } from '../modules/user/user.router';
55{{ /if }}
6- {{ #if ( MODULE_HEALTHCHECK ) }}
6+ {{ #if MODULE_HEALTHCHECK }}
77import healthCheckRouter, {
88 HEALTH_ROUTER_ROOT,
99} from '../modules/healthcheck/healthcheck.routes';
1010{{ /if }}
1111
1212const router = express.Router();
1313
14- {{ #if ( MODULE_HEALTHCHECK ) }}
14+ {{ #if MODULE_HEALTHCHECK }}
1515router.use(HEALTH_ROUTER_ROOT, healthCheckRouter);
1616{{ /if }}
1717{{ #if AUTH }}
You can’t perform that action at this time.
0 commit comments