Switch build target to browser and bump version to 2.1.1

Updated the build target from Node to browser in `build.ts` to support browser environments. Incremented the package version from 2.1.0 to 2.1.1 to reflect the change.
This commit is contained in:
Geoff Seemueller
2025-01-26 10:02:36 -05:00
parent 3e3dfa0005
commit b96b282fec
2 changed files with 3 additions and 3 deletions

View File

@@ -4,7 +4,7 @@ import isolatedDecl from 'bun-plugin-isolated-decl';
await Bun.build({
entrypoints: ['./src/index.ts', './src/types.ts'],
outdir: './dist',
target: 'node',
target: 'browser',
plugins: [
isolatedDecl({
forceGenerate: true, // Generate declaration files even if there are errors

View File

@@ -1,6 +1,6 @@
{
"name": "manifold-workflow-engine",
"version": "2.1.0",
"version": "2.1.1",
"author": "seemueller-io",
"type": "module",
"description": "for building dynamic, LLM-driven workflows using a region-based execution model",