fix: bun install symlinks

This commit is contained in:
eric
2026-03-06 23:52:27 +01:00
parent e567dad413
commit 40d621d1cf
24 changed files with 1464 additions and 56 deletions

View File

@@ -1,7 +1,9 @@
import { nanoid } from "nanoid";
const app = document.querySelector("#app");
if (app) {
app.textContent = "Hello from monorepo app B";
const id = nanoid();
app.textContent = "Hello from monorepo app B " + id;
}
console.log("Hello from monorepo app B");

View File

@@ -3,7 +3,10 @@
"private": true,
"type": "module",
"scripts": {
"dev": "vite"
"dev": "vite --port 5174"
},
"dependencies": {
"nanoid": "5.1.6"
},
"devDependencies": {
"vite": "catalog:",

View File

@@ -0,0 +1 @@
export default {};