theatre/packages/benchmarks/devEnv/serveBenchmarks.ts
Aria Minaei ae8be59366 Implement a basic benchmark test, and deprecate derivation.map()/flatMap()
This starts a new workspace at `packages/benchmarks` where future benchmarks
are going to sit. For now, it only contains a basic profile of a `sequence.play()`
setup.

It also removes all uses of `AbstractDerivation.map()/flatMap()` and uses prisms
instead.
2023-01-04 20:49:35 +01:00

29 lines
650 B
TypeScript

import path from 'path'
import {definedGlobals} from '../../../theatre/devEnv/definedGlobals'
const benchmarksDir = path.join(__dirname, '..')
const port = 8087
const allEnvs = {
'0.5.0': () => {},
}
require('esbuild')
.serve(
{
port,
servedir: path.join(benchmarksDir, 'src'),
},
{
entryPoints: [path.join(benchmarksDir, 'src/index.tsx')],
target: ['firefox88'],
loader: {'.png': 'file', '.glb': 'file', '.svg': 'dataurl'},
bundle: true,
sourcemap: true,
define: definedGlobals,
},
)
.then((server: unknown) => {
console.log('serving', 'http://localhost:' + port)
})