You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
313 B
10 lines
313 B
---
|
|
to: src/app.routes.ts
|
|
after: import { Routes } from 'nest-router';
|
|
inject: true
|
|
skip_if: modules/<%= h.changeCase.param(name) %>
|
|
---
|
|
<%
|
|
properName = h.changeCase.pascal(name);
|
|
kebabName = h.changeCase.param(name);
|
|
%>import { <%= properName %>Module } from './modules/<%= kebabName %>/<%= kebabName %>.module';
|