diff --git a/bun.lockb b/bun.lockb index acf1f47..f2aae6c 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/clean-dist b/clean-dist index fd058ae..684d43b 100755 --- a/clean-dist +++ b/clean-dist @@ -13,5 +13,4 @@ cat << EOF > dist/index.d.ts export * from "./declarations/types.d"; export { default as Router } from "./src/router"; EOF - -echo "✨ Done" +# echo "✨ Done" diff --git a/package.json b/package.json index 6f97dcc..a677e82 100644 --- a/package.json +++ b/package.json @@ -1,12 +1,9 @@ { "name": "colstonjs", - "version": "0.1.0-beta.4", + "version": "0.1.0-beta.5", "author": "Chukwuemeka Ajima ", "repository": "https://github.com/ajimae/colstonjs.git", "main": "dist/index.js", - "dependencies": { - "bun-types": "^0.1.4" - }, "description": "fast, lightweight and zero dependency framework for bunjs", "files": [ "dist/*", @@ -29,8 +26,11 @@ ], "license": "MIT", "private": false, + "devDependencies": { + "bun-types": "^0.1.11" + }, "scripts": { "build": "rm -rf dist && tsc", "postbuild": "chmod +x clean-dist && sh ./clean-dist" } -} \ No newline at end of file +} diff --git a/tsconfig.json b/tsconfig.json index c06481a..0b72d6d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,7 +10,8 @@ "removeComments": false, "resolveJsonModule": true, "types": ["bun-types"], - "outDir": "dist" + "outDir": "dist", + "skipLibCheck": true }, "include": ["index.ts", "src/**/*"] }