We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9c59da commit 86cfbd6Copy full SHA for 86cfbd6
material.angular.io/src/app/shared/stack-blitz/stack-blitz-writer.ts
@@ -203,7 +203,7 @@ export class StackBlitzWriter {
203
.replace(/material-docs-example/g, data.selectorName)
204
.replace(/\${title}/g, data.description);
205
} else if (fileName === '.stackblitzrc') {
206
- fileContent = fileContent.replace(/\${startCommand}/, isTest ? 'turbo test' : 'turbo start');
+ fileContent = fileContent.replace(/\${startCommand}/, isTest ? 'yarn test' : 'yarn start');
207
} else if (fileName === 'src/main.ts') {
208
const mainComponentName = data.componentNames[0];
209
material.angular.io/src/assets/stack-blitz/.stackblitzrc
@@ -1,7 +1,4 @@
1
{
2
"installDependencies": true,
3
- "startCommand": "${startCommand}",
4
- "env": {
5
- "ENABLE_CJS_IMPORTS": true
6
- }
+ "startCommand": "${startCommand}"
7
}
0 commit comments