98cc0d4cac
* Initial commit with mobx * Convert more to mobx * Make useCameraCss reactive (autorun) * Move more items to mobx * Fix more invalid components and layout hooks that needed to be reactive * Add autorun to css layout effect * Remove centric specific yarn.lock changes * mild cleanup * update from main * add tests, example * cleanup * minor tweak to advanced example * Update app.tsx * Optimizations around events not being memoized * Support className property on SVGContainer * Add data-type to shape container to aid with external styling * Fix classnames * Fixes bug on text shapes / shapes with refs * v1.1.9-beta.1 * v1.1.9-beta.2 * Drop mobx as a dependency for core * v1.1.9-beta.3 * rename * Revert "Drop mobx as a dependency for core" This reverts commit 2d93f84a87f0c709e55fb2766519bfde03f8e854. * remove unused code from utils, move curve to separate package * v1.1.9-beta.4 * Add pretty-quick * Update package.json * Renamings Co-authored-by: Noah Shipley <nshipley@centricsoftware.com> Co-authored-by: Steve Ruiz <steveruizok@gmail.com>
61 lines
1.4 KiB
JavaScript
61 lines
1.4 KiB
JavaScript
/* eslint-disable */
|
||
const fs = require('fs')
|
||
const esbuild = require('esbuild')
|
||
const { gzip } = require('zlib')
|
||
const pkg = require('../package.json')
|
||
|
||
async function main() {
|
||
if (fs.existsSync('./dist')) {
|
||
fs.rmSync('./dist', { recursive: true }, (e) => {
|
||
if (e) {
|
||
throw e
|
||
}
|
||
})
|
||
}
|
||
|
||
try {
|
||
esbuild.buildSync({
|
||
entryPoints: ['./src/index.ts'],
|
||
outdir: 'dist/cjs',
|
||
minify: false,
|
||
bundle: true,
|
||
format: 'cjs',
|
||
target: 'es6',
|
||
tsconfig: './tsconfig.build.json',
|
||
metafile: false,
|
||
sourcemap: true,
|
||
})
|
||
|
||
const esmResult = esbuild.buildSync({
|
||
entryPoints: ['./src/index.ts'],
|
||
outdir: 'dist/esm',
|
||
minify: false,
|
||
bundle: true,
|
||
format: 'esm',
|
||
target: 'es6',
|
||
tsconfig: './tsconfig.build.json',
|
||
metafile: true,
|
||
sourcemap: true,
|
||
})
|
||
|
||
const esmSize = Object.values(esmResult.metafile.outputs).reduce(
|
||
(acc, { bytes }) => acc + bytes,
|
||
0
|
||
)
|
||
|
||
fs.readFile('./dist/esm/index.js', (_err, data) => {
|
||
gzip(data, (_err, result) => {
|
||
console.log(
|
||
`✔ ${pkg.name}: Built package. ${(esmSize / 1000).toFixed(2)}kb (${(
|
||
result.length / 1000
|
||
).toFixed(2)}kb minified)`
|
||
)
|
||
})
|
||
})
|
||
} catch (e) {
|
||
console.log(`× ${pkg.name}: Build failed due to an error.`)
|
||
console.log(e)
|
||
}
|
||
}
|
||
|
||
main()
|