Skip to content

Commit

Permalink
chore: fixes for netlify
Browse files Browse the repository at this point in the history
  • Loading branch information
sroussey committed Apr 7, 2024
1 parent 210ead1 commit 8c01087
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 deletions.
Binary file modified bun.lockb
Binary file not shown.
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,30 +9,31 @@
"scripts": {
"build": "( cd packages/core && bun run build ) && ( cd packages/cli && bun run build ) && ( cd packages/web && bun run build )",
"clean": "rm -rf node_modules packages/*/node_modules packages/*/dist",
"watch": "bunx concurrently -c 'auto' -n core,cli 'cd packages/core && bun run watch' 'sleep 1 && cd packages/cli && bun run watch'",
"watch": "concurrently -c 'auto' -n core,cli 'cd packages/core && bun run watch' 'sleep 1 && cd packages/cli && bun run watch'",
"docs": "typedoc",
"format": "eslint \"{packages}/*/src/**/*.{js,ts,tsx,json}\" --fix && prettier \"{packages}/*/src/**/*.{js,ts,tsx,json}\" --check --write",
"release": "npm run build && npm publish",
"test": "jest"
},
"dependencies": {
"@mediapipe/tasks-text": "^0.10.12",
"@sroussey/transformers": "^3.0.0-alpha.1",
"@sroussey/typescript-graph": "^0.3.14",
"@types/better-sqlite3": "^7.6.9",
"@types/pg": "^8.11.2",
"better-sqlite3": "^9.4.3",
"bun-types": "^1.0.33",
"chalk": "^5.3.0",
"commander": "=11.1.0",
"concurrently": "^8.2.2",
"eventemitter3": "^5.0.1",
"listr2": "^8.0.2",
"nanoid": "^5.0.6",
"pg": "^8.11.3",
"postcss": "^8.4.36",
"postgres": "^3.4.3",
"rxjs": "^7.8.1",
"uuid": "^9.0.1",
"@mediapipe/tasks-text": "^0.10.12",
"@sroussey/transformers": "^3.0.0-alpha.1"
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/bun": "^1.0.8",
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"version": "0.0.1",
"description": "Ellmers is a tool for building and running DAG pipelines of AI tasks.",
"scripts": {
"watch": "bunx concurrently -c 'auto' -n 'cli:' 'npm:watch-*'",
"watch": "concurrently -c 'auto' -n 'cli:' 'npm:watch-*'",
"watch-js": "bun build --watch --target=node --sourcemap=external --external listr2 --external @sroussey/transformers --outdir ./dist ./src/lib.ts ./src/ellmers.ts",
"watch-types": "tsc --watch --preserveWatchOutput",
"build": "bun run build-clean && bun run build-types && bun run build-js && bun run build-types-map",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"version": "0.0.1",
"description": "Ellmers is a tool for building and running DAG pipelines of AI tasks.",
"scripts": {
"watch": "bunx concurrently -c 'auto' -n 'core:' 'npm:watch-*'",
"watch": "concurrently -c 'auto' -n 'core:' 'npm:watch-*'",
"watch-browser": "bun build --watch --target=browser --sourcemap=external --external @sroussey/transformers --outdir ./dist ./src/browser*.ts",
"watch-server-bun": "bun build --watch --target=bun --sourcemap=external --external @sroussey/transformers --outdir ./dist ./src/server*.ts",
"watch-types": "tsc --watch --preserveWatchOutput",
Expand Down
6 changes: 3 additions & 3 deletions packages/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "bunx concurrently -c 'auto' -n app,types 'bunx --bun vite' 'tsc -w --noEmit'",
"build": "bunx --bun vite build",
"dev": "concurrently -c 'auto' -n app,types 'vite' 'tsc -w --noEmit'",
"build": "vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "bunx --bun vite preview"
"preview": "vite preview"
},
"dependencies": {
"@sroussey/xyflow-react": "^12.0.0-beta.13",
Expand Down

0 comments on commit 8c01087

Please sign in to comment.