bunup 0.16.31 → 0.16.32
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/cli/index.js
CHANGED
|
@@ -26,7 +26,7 @@ import {
|
|
|
26
26
|
import { loadConfig } from "coffi";
|
|
27
27
|
import pc4 from "picocolors";
|
|
28
28
|
// packages/bunup/package.json
|
|
29
|
-
var version = "0.16.
|
|
29
|
+
var version = "0.16.32";
|
|
30
30
|
|
|
31
31
|
// packages/bunup/src/printer/print-build-report.ts
|
|
32
32
|
import { promisify } from "util";
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BuildContext, BuildMeta, BuildOptions, BuildOutputFile, BuildResult, BunupPlugin, DefineConfigItem, DefineWorkspaceItem, WithOptional, WithRequired } from "./shared/bunup-
|
|
1
|
+
import { BuildContext, BuildMeta, BuildOptions, BuildOutputFile, BuildResult, BunupPlugin, DefineConfigItem, DefineWorkspaceItem, WithOptional, WithRequired } from "./shared/bunup-7a1vqtsp.js";
|
|
2
2
|
declare function build(userOptions: Partial<BuildOptions>, rootDir?: string, ac?: AbortController): Promise<BuildResult>;
|
|
3
3
|
declare function defineConfig(options: DefineConfigItem | WithRequired<DefineConfigItem, "name">[]): DefineConfigItem | WithRequired<DefineConfigItem, "name">[];
|
|
4
4
|
declare function defineWorkspace(options: WithOptional<DefineWorkspaceItem, "config">[], sharedOptions?: Partial<DefineConfigItem>): DefineWorkspaceItem[];
|
package/dist/plugins.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Arrayable, BuildOptions, BunupPlugin, BunupPluginHooks, exports, injectStyles, unused } from "./shared/bunup-
|
|
1
|
+
import { Arrayable, BuildOptions, BunupPlugin, BunupPluginHooks, exports, injectStyles, unused } from "./shared/bunup-7a1vqtsp.js";
|
|
2
2
|
type CopyOptions = {
|
|
3
3
|
/** Whether to follow symbolic links when copying files. */
|
|
4
4
|
followSymlinks?: boolean;
|
|
@@ -265,7 +265,7 @@ type CSSOptions = {
|
|
|
265
265
|
*/
|
|
266
266
|
inject?: boolean | InjectStylesOptions;
|
|
267
267
|
};
|
|
268
|
-
type Compile = boolean | Bun.Build.
|
|
268
|
+
type Compile = boolean | Bun.Build.CompileTarget | CompileBuildOptions;
|
|
269
269
|
type OnSuccess = ((options: Partial<BuildOptions>) => MaybePromise<void> | (() => void)) | string | {
|
|
270
270
|
/**
|
|
271
271
|
* The shell command to execute after a successful build
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bunup",
|
|
3
|
-
"version": "0.16.
|
|
3
|
+
"version": "0.16.32",
|
|
4
4
|
"description": "⚡ A blazing-fast build tool for your libraries built with Bun.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"bun",
|
|
@@ -51,17 +51,17 @@
|
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"@bunup/dts": "^0.14.53",
|
|
54
|
-
"@bunup/shared": "0.16.
|
|
54
|
+
"@bunup/shared": "0.16.31",
|
|
55
55
|
"chokidar": "^5.0.0",
|
|
56
56
|
"coffi": "^0.1.37",
|
|
57
|
-
"lightningcss": "^1.
|
|
57
|
+
"lightningcss": "^1.32.0",
|
|
58
58
|
"picocolors": "^1.1.1",
|
|
59
|
-
"tinyexec": "^1.
|
|
59
|
+
"tinyexec": "^1.2.4",
|
|
60
60
|
"tree-kill": "^1.2.2",
|
|
61
61
|
"zlye": "^0.4.4"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@types/bun": "^1.3.
|
|
64
|
+
"@types/bun": "^1.3.11"
|
|
65
65
|
},
|
|
66
66
|
"peerDependencies": {
|
|
67
67
|
"typescript": ">=4.5.0"
|