bunup 0.8.3 → 0.8.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/cli.js +1 -1
  2. package/package.json +14 -4
package/dist/cli.js CHANGED
@@ -924,7 +924,7 @@ var init_new = __esm(() => {
924
924
  // src/cli/index.ts
925
925
  import { exec } from "tinyexec";
926
926
  // package.json
927
- var version = "0.8.3";
927
+ var version = "0.8.4";
928
928
 
929
929
  // src/cli/index.ts
930
930
  init_errors();
package/package.json CHANGED
@@ -1,9 +1,12 @@
1
1
  {
2
2
  "name": "bunup",
3
3
  "description": "⚡ A blazing-fast build tool for your libraries built with Bun.",
4
- "version": "0.8.3",
4
+ "version": "0.8.4",
5
5
  "type": "module",
6
- "files": ["dist", "bin"],
6
+ "files": [
7
+ "dist",
8
+ "bin"
9
+ ],
7
10
  "module": "./dist/index.js",
8
11
  "main": "./dist/index.cjs",
9
12
  "types": "./dist/index.d.cts",
@@ -34,7 +37,11 @@
34
37
  },
35
38
  "funding": "https://github.com/sponsors/arshad-yaseen",
36
39
  "homepage": "https://bunup.dev",
37
- "keywords": ["bun", "bunup", "bun-bundler"],
40
+ "keywords": [
41
+ "bun",
42
+ "bunup",
43
+ "bun-bundler"
44
+ ],
38
45
  "bin": {
39
46
  "bunup": "bin/bunup.mjs"
40
47
  },
@@ -89,5 +96,8 @@
89
96
  "*": "bun run format:fix && git add .",
90
97
  "src/**/*.(m|c)?(j|t)s": "bun run tsc"
91
98
  },
92
- "workspaces": ["docs", "tests"]
99
+ "workspaces": [
100
+ "docs",
101
+ "tests"
102
+ ]
93
103
  }