fixed up lib packages to remove bun dev since they will be imported into apps

This commit is contained in:
Bojan Kucera 2025-06-08 14:15:04 -04:00
parent f68e620c76
commit 2bc46cdb2a
20 changed files with 18 additions and 23 deletions

View file

@ -6,7 +6,7 @@
"type": "module",
"scripts": {
"build": "tsc",
"dev": "bun --watch src/index.ts",
"devvvvv": "bun --watch src/index.ts",
"start": "bun src/index.ts",
"test": "bun test",
"lint": "eslint src --ext .ts",

View file

@ -6,7 +6,7 @@
"type": "module",
"scripts": {
"build": "tsc",
"dev": "bun --watch src/index.ts",
"devvvvv": "bun --watch src/index.ts",
"start": "bun src/index.ts",
"test": "bun test",
"lint": "eslint src --ext .ts",

View file

@ -5,7 +5,7 @@
"main": "dist/index.js",
"type": "module",
"scripts": {
"dev": "bun --watch src/index.ts",
"devvvvv": "bun --watch src/index.ts",
"build": "bun build src/index.ts --outdir dist --target node",
"start": "bun dist/index.js",
"test": "bun test",

View file

@ -5,7 +5,7 @@
"main": "dist/index.js",
"type": "module",
"scripts": {
"dev": "bun --watch src/index.ts",
"devvvvv": "bun --watch src/index.ts",
"build": "bun build src/index.ts --outdir dist --target node",
"start": "bun dist/index.js",
"test": "bun test", "clean": "rm -rf dist",