@majordigital/create-acorn 1.0.6 → 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/create-acorn.mjs +1 -1
- package/package.json +1 -1
package/bin/create-acorn.mjs
CHANGED
|
@@ -123,7 +123,7 @@ async function scaffoldNextApp() {
|
|
|
123
123
|
console.log('');
|
|
124
124
|
|
|
125
125
|
console.log('Installing Biome for linting...');
|
|
126
|
-
await runCommand('npm', ['install', '--save-dev', '--save-exact', '@biomejs/biome']);
|
|
126
|
+
await runCommand('npm', ['install', '--save-dev', '--save-exact', '--legacy-peer-deps', '@biomejs/biome']);
|
|
127
127
|
await runCommand('npx', ['@biomejs/biome', 'init']);
|
|
128
128
|
console.log('');
|
|
129
129
|
console.log('Biome configured successfully.');
|
package/package.json
CHANGED