chore: post publish docs & examples changes (#9217)

This commit is contained in:
Marcel Mraz 2025-03-11 13:02:59 +01:00 committed by GitHub
parent d587b8a3de
commit 69bc5bdaab
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 256 additions and 388 deletions

View file

@ -12,9 +12,8 @@
<script>
window.name = "codesandbox";
window.EXCALIDRAW_ASSET_PATH =
"https://esm.sh/@excalidraw/excalidraw@0.18.0-rc.5/dist/prod/";
"https://esm.sh/@excalidraw/excalidraw@0.18.0/dist/prod/";
</script>
<link rel="stylesheet" href="/dist/dev/index.css" />
</head>
<body>

View file

@ -5,7 +5,7 @@
"dependencies": {
"react": "19.0.0",
"react-dom": "19.0.0",
"@excalidraw/excalidraw": "0.18.0-rc.5",
"@excalidraw/excalidraw": "*",
"browser-fs-access": "0.29.1"
},
"devDependencies": {
@ -15,6 +15,7 @@
"scripts": {
"start": "vite",
"build": "vite build",
"build:preview": "yarn build && vite preview --port 5002"
"build:preview": "yarn build && vite preview --port 5002",
"build:package": "yarn workspace @excalidraw/excalidraw run build:esm"
}
}

View file

@ -1,4 +1,5 @@
{
"outputDirectory": "dist",
"installCommand": "yarn install"
"installCommand": "yarn install",
"buildCommand": "yarn build:package && yarn build"
}