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",

View file

@ -910,7 +910,7 @@
"accepts": ["accepts@1.3.8", "", { "dependencies": { "mime-types": "~2.1.34", "negotiator": "0.6.3" } }, "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw=="],
"acorn": ["acorn@8.14.1", "", { "bin": { "acorn": "bin/acorn" } }, "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg=="],
"acorn": ["acorn@8.15.0", "", { "bin": { "acorn": "bin/acorn" } }, "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg=="],
"acorn-jsx": ["acorn-jsx@5.3.2", "", { "peerDependencies": { "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ=="],
@ -2170,7 +2170,7 @@
"@tailwindcss/oxide-wasm32-wasi/@emnapi/wasi-threads": ["@emnapi/wasi-threads@1.0.2", "", { "dependencies": { "tslib": "^2.4.0" }, "bundled": true }, "sha512-5n3nTJblwRi8LlXkJ9eBzu+kZR8Yxcc7ubakyQTFzPMtIhFpUBRbsnc2Dv88IZDIbCDlBiWrknhB4Lsz7mg6BA=="],
"@tailwindcss/oxide-wasm32-wasi/@napi-rs/wasm-runtime": ["@napi-rs/wasm-runtime@0.2.10", "", { "dependencies": { "@emnapi/core": "^1.4.3", "@emnapi/runtime": "^1.4.3", "@tybys/wasm-util": "^0.9.0" }, "bundled": true }, "sha512-bCsCyeZEwVErsGmyPNSzwfwFn4OdxBj0mmv6hOFucB/k81Ojdu68RbZdxYsRQUPc9l6SU5F/cG+bXgWs3oUgsQ=="],
"@tailwindcss/oxide-wasm32-wasi/@napi-rs/wasm-runtime": ["@napi-rs/wasm-runtime@0.2.11", "", { "dependencies": { "@emnapi/core": "^1.4.3", "@emnapi/runtime": "^1.4.3", "@tybys/wasm-util": "^0.9.0" }, "bundled": true }, "sha512-9DPkXtvHydrcOsopiYpUgPHpmj0HWZKMUnL2dZqpvC42lsratuBG06V5ipyno0fUek5VlFsNQ+AcFATSrJXgMA=="],
"@tailwindcss/oxide-wasm32-wasi/@tybys/wasm-util": ["@tybys/wasm-util@0.9.0", "", { "dependencies": { "tslib": "^2.4.0" }, "bundled": true }, "sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw=="],

View file

@ -7,7 +7,6 @@
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rimraf dist",
"test": "bun test"
},

View file

@ -10,7 +10,6 @@
"test": "bun test",
"lint": "eslint src/**/*.ts",
"type-check": "tsc --noEmit",
"dev": "tsc --watch",
"clean": "rimraf dist"
},
"dependencies": {

View file

@ -7,7 +7,6 @@
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "bun test",
"clean": "rimraf dist"
},

View file

@ -7,7 +7,6 @@
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "bun test",
"clean": "rimraf dist"
},

View file

@ -12,7 +12,6 @@
"test:coverage": "bun test --coverage",
"lint": "eslint src/**/*.ts",
"type-check": "tsc --noEmit",
"dev": "tsc --watch",
"clean": "rimraf dist"
},
"dependencies": {

View file

@ -7,7 +7,6 @@
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rimraf dist",
"test": "bun test"
},

View file

@ -10,7 +10,6 @@
"test": "bun test",
"lint": "eslint src/**/*.ts",
"type-check": "tsc --noEmit",
"dev": "tsc --watch",
"clean": "rimraf dist"
},
"dependencies": {

View file

@ -10,7 +10,6 @@
"test": "bun test",
"lint": "eslint src/**/*.ts",
"type-check": "tsc --noEmit",
"dev": "tsc --watch",
"clean": "rimraf dist"
},
"dependencies": {

View file

@ -10,7 +10,6 @@
"test": "bun test",
"lint": "eslint src/**/*.ts",
"type-check": "tsc --noEmit",
"dev": "tsc --watch",
"clean": "rimraf dist"
},
"dependencies": {

View file

@ -6,7 +6,6 @@
"main": "dist/index.js",
"types": "dist/index.d.ts", "scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"test": "bun test"
},

View file

@ -7,7 +7,6 @@
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "bun test",
"clean": "rimraf dist"
},

View file

@ -8,7 +8,6 @@
"scripts": {
"build": "tsc",
"type-check": "tsc --noEmit",
"dev": "tsc --watch",
"clean": "rimraf dist",
"test": "bun test"
},

View file

@ -7,7 +7,6 @@
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rimraf dist",
"test": "bun test"
},

View file

@ -7,7 +7,6 @@
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "bun test",
"clean": "rimraf dist"
},

View file

@ -1,6 +1,8 @@
{
"$schema": "https://turbo.build/schema.json",
"ui": "tui", "tasks": {
"ui": "tui",
"globalDependencies": ["**/.env.*local"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".next/**", "!.next/cache/**"]
@ -12,7 +14,8 @@
"dev": {
"cache": false,
"persistent": true
}, "test": {
},
"test": {
"dependsOn": ["build"],
"outputs": []
},
@ -31,5 +34,11 @@
"dependsOn": ["build"],
"cache": false
}
}
},
"globalEnv": [
"NODE_ENV",
"DATA_SERVICE_PORT",
"DRAGONFLY_HOST",
"DRAGONFLY_PORT"
]
}