We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1bafbdc + 34ca081 commit 2dfe043Copy full SHA for 2dfe043
templates/cli/lib/questions.js.twig
@@ -20,6 +20,7 @@ const getIgnores = (runtime) => {
20
case 'kotlin':
21
return ['build'];
22
case 'node':
23
+ case 'bun':
24
return ['node_modules', '.npm'];
25
case 'php':
26
return ['vendor'];
@@ -46,6 +47,8 @@ const getEntrypoint = (runtime) => {
46
47
return 'src/main.ts';
48
49
return 'src/main.js';
50
51
+ return 'src/main.ts';
52
53
return 'src/index.php';
54
case 'python':
@@ -79,6 +82,8 @@ const getInstallCommand = (runtime) => {
79
82
return "deno install";
80
83
81
84
return 'npm install';
85
86
+ return 'bun install';
87
88
return 'composer install';
89
0 commit comments