We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 403d1b1 commit 81aad84Copy full SHA for 81aad84
1 file changed
src/cli.ts
@@ -168,7 +168,8 @@ const config = {
168
file.prettier ?? /\.(js|jsx|ts|tsx|css|json|html|md)$/.test(file.output);
169
// Transpile if the template is TypeScript but we're generating JavaScript
170
const transpile =
171
- file.transpile ?? (/\.(ts|tsx)\.hbs$/.test(file.template) && javascript === true);
+ file.transpile ??
172
+ (/\.(ts|tsx)\.hbs$/.test(file.template) && javascript === true);
173
174
return {
175
...file,
@@ -179,6 +180,9 @@ const config = {
179
180
181
templateRoot: join(__dirname, 'templates'),
182
183
+ installCommand: '{pm} install',
184
+ devCommand: '{pm} run dev',
185
+
186
onSuccess: (projectName: string) => {
187
console.log(`Next steps:`);
188
console.log(` cd ${projectName}`);
0 commit comments