bunup 0.8.35 → 0.8.36
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.
- package/dist/{chunk-vfvfb7pv.js → chunk-4y0hvzcd.js} +17 -14
- package/dist/{chunk-8sqm3fje.d.ts → chunk-589998ak.d.ts} +10 -44
- package/dist/{chunk-gdnf8ebe.js → chunk-ct0a7gyb.js} +2 -2
- package/dist/{chunk-h9jzw5qq.js → chunk-g3b9h2ys.js} +9 -9
- package/dist/{chunk-8z361mhm.js → chunk-ka4kbkdd.js} +64 -109
- package/dist/{chunk-by2b1r3m.js → chunk-vh9fpy39.js} +49 -59
- package/dist/{chunk-0r7kktgh.js → chunk-w13gdbvp.js} +15 -6
- package/dist/cli/index.js +345 -166
- package/dist/index.d.ts +1 -1
- package/dist/index.js +3 -3
- package/dist/plugins.d.ts +1 -1
- package/dist/plugins.js +2 -2
- package/package.json +102 -92
package/dist/plugins.js
CHANGED
package/package.json
CHANGED
|
@@ -1,93 +1,103 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
2
|
+
"name": "bunup",
|
|
3
|
+
"description": "⚡ A blazing-fast build tool for your libraries built with Bun.",
|
|
4
|
+
"version": "0.8.36",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist",
|
|
8
|
+
"bin"
|
|
9
|
+
],
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"module": "./dist/index.js",
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
15
|
+
"import": "./dist/index.js"
|
|
16
|
+
},
|
|
17
|
+
"./plugins": {
|
|
18
|
+
"types": "./dist/plugins.d.ts",
|
|
19
|
+
"import": "./dist/plugins.js"
|
|
20
|
+
},
|
|
21
|
+
"./cli": {
|
|
22
|
+
"import": "./dist/cli/index.js"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"license": "MIT",
|
|
26
|
+
"author": "Arshad Yaseen <m@arshadyaseen.com> (https://arshadyaseen.com)",
|
|
27
|
+
"maintainers": [
|
|
28
|
+
{
|
|
29
|
+
"name": "Arshad Yaseen",
|
|
30
|
+
"email": "m@arshadyaseen.com",
|
|
31
|
+
"url": "https://arshadyaseen.com"
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"repository": {
|
|
35
|
+
"type": "git",
|
|
36
|
+
"url": "git+https://github.com/arshad-yaseen/bunup.git"
|
|
37
|
+
},
|
|
38
|
+
"funding": "https://github.com/sponsors/arshad-yaseen",
|
|
39
|
+
"homepage": "https://bunup.dev",
|
|
40
|
+
"keywords": [
|
|
41
|
+
"bun",
|
|
42
|
+
"bunup",
|
|
43
|
+
"bun-bundler"
|
|
44
|
+
],
|
|
45
|
+
"bin": {
|
|
46
|
+
"bunup": "bin/bunup.mjs"
|
|
47
|
+
},
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"@clack/prompts": "^0.10.1",
|
|
50
|
+
"bun-dts": "^0.1.64",
|
|
51
|
+
"chokidar": "^4.0.3",
|
|
52
|
+
"coffi": "^0.1.31",
|
|
53
|
+
"giget": "^2.0.0",
|
|
54
|
+
"picocolors": "^1.1.1",
|
|
55
|
+
"replace-in-file": "^8.3.0",
|
|
56
|
+
"tinyexec": "^1.0.1"
|
|
57
|
+
},
|
|
58
|
+
"devDependencies": {
|
|
59
|
+
"@biomejs/biome": "^1.9.4",
|
|
60
|
+
"@types/bun": "^1.2.5",
|
|
61
|
+
"bumpp": "^10.1.0",
|
|
62
|
+
"husky": "^9.1.7",
|
|
63
|
+
"lightningcss": "^1.30.1",
|
|
64
|
+
"lint-staged": "^15.5.1",
|
|
65
|
+
"typescript": "^5.8.3"
|
|
66
|
+
},
|
|
67
|
+
"peerDependencies": {
|
|
68
|
+
"typescript": ">=4.5.0",
|
|
69
|
+
"lightningcss": ">=1.17.0"
|
|
70
|
+
},
|
|
71
|
+
"peerDependenciesMeta": {
|
|
72
|
+
"typescript": {
|
|
73
|
+
"optional": true
|
|
74
|
+
},
|
|
75
|
+
"lightningcss": {
|
|
76
|
+
"optional": true
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
"scripts": {
|
|
80
|
+
"build": "bunx bunup@latest",
|
|
81
|
+
"build:docs": "bun run --cwd docs build",
|
|
82
|
+
"dev": "bunx bunup@latest --watch",
|
|
83
|
+
"dev:docs": "bun run --cwd docs dev",
|
|
84
|
+
"format": "biome format .",
|
|
85
|
+
"format:fix": "biome format --write .",
|
|
86
|
+
"lint": "biome check .",
|
|
87
|
+
"lint:fix": "biome check --write .",
|
|
88
|
+
"prepare": "husky",
|
|
89
|
+
"test": "bun test",
|
|
90
|
+
"test-build": "bun run --cwd tests build",
|
|
91
|
+
"tsc": "tsc --noEmit",
|
|
92
|
+
"publish:ci": "bun publish --access public --no-git-checks",
|
|
93
|
+
"release": "bumpp"
|
|
94
|
+
},
|
|
95
|
+
"lint-staged": {
|
|
96
|
+
"*": "bun run format:fix && git add .",
|
|
97
|
+
"src/**/*.(m|c)?(j|t)s": "bun run tsc"
|
|
98
|
+
},
|
|
99
|
+
"workspaces": [
|
|
100
|
+
"docs",
|
|
101
|
+
"tests"
|
|
102
|
+
]
|
|
103
|
+
}
|