c54c800675
* local images use assets for local copy add menu options * clean up packages * cleanup unused content, move file handling into app.paste * Add tldraw-assets.json to other files. * add path to editor * Update build.mjs * add export to server example with link to gist * Fix onAssetCreate and onAssetDelete APIs * Update yarn.lock * fix bugs on paste, adjust api for getting images, fix readonly on cut, copy, paste * re-enable swc * paste svg strings as svg images * cleanup * fix string case for tldraw json
61 lines
1.2 KiB
JavaScript
61 lines
1.2 KiB
JavaScript
/* eslint-disable no-undef */
|
|
import fs from 'fs'
|
|
import esbuildServe from 'esbuild-serve'
|
|
import dotenv from 'dotenv'
|
|
import path from 'path'
|
|
|
|
dotenv.config()
|
|
|
|
const { log: jslog } = console
|
|
|
|
async function main() {
|
|
if (fs.existsSync('./dist')) {
|
|
fs.rmSync('./dist', { recursive: true }, (e) => {
|
|
if (e) {
|
|
throw e
|
|
}
|
|
})
|
|
}
|
|
|
|
if (!fs.existsSync('./dist')) {
|
|
fs.mkdirSync('./dist')
|
|
}
|
|
|
|
fs.readdirSync('./src/public').forEach((file) =>
|
|
fs.copyFile(path.join('./src/public', file), path.join('./dist', file), (err) => {
|
|
if (err) throw err
|
|
})
|
|
)
|
|
|
|
try {
|
|
await esbuildServe(
|
|
{
|
|
entryPoints: ['src/index.tsx'],
|
|
outfile: 'dist/index.js',
|
|
minify: false,
|
|
bundle: true,
|
|
incremental: true,
|
|
target: 'es6',
|
|
jsxFactory: 'React.createElement',
|
|
jsxFragment: 'React.Fragment',
|
|
define: {
|
|
'process.env.NODE_ENV': '"production"',
|
|
},
|
|
watch: {
|
|
onRebuild(err) {
|
|
err ? error('❌ Failed') : jslog('✅ Updated')
|
|
},
|
|
},
|
|
},
|
|
{
|
|
port: 5420,
|
|
root: './dist',
|
|
live: true,
|
|
}
|
|
)
|
|
} catch (err) {
|
|
process.exit(1)
|
|
}
|
|
}
|
|
|
|
main()
|