quickbundle 0.0.0-next-9474b9e → 0.0.0-next-3b75337
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/README.md +2 -8
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
|
|
11
11
|
Quickbundle allows you to bundle a library in a **quick**, **fast** and **easy** way:
|
|
12
12
|
|
|
13
|
-
- Fast build and watch mode powered by Rollup[^1] and SWC[^2].
|
|
14
|
-
- Compile mode to compile and cross compile standalone binaries for systems that do not have Node.js installed[^3].
|
|
15
13
|
- Zero configuration: define the build artifacts in your `package.json`, and you're all set!
|
|
14
|
+
- Fast build and watch mode powered by Rollup[^1] and SWC[^2].
|
|
15
|
+
- Compile and cross compile standalone executables for systems that do not have Node.js installed[^3].
|
|
16
16
|
- Support of `cjs` & `esm` module formats output.
|
|
17
17
|
- Support of several loaders including JavaScript, TypeScript, JSX, JSON, and Images.
|
|
18
18
|
- TypeScript's declaration file (`.d.ts`) bundling.
|
|
@@ -191,12 +191,6 @@ quickbundle compile --target node-v23.1.0-win-x64 # Embeds Node v23 runtime buil
|
|
|
191
191
|
|
|
192
192
|
<br>
|
|
193
193
|
|
|
194
|
-
## ☑️ Roadmap
|
|
195
|
-
|
|
196
|
-
- [ ] Support cross compilation to other platforms (ala [Bun](https://bun.sh/docs/bundler/executables#cross-compile-to-other-platforms)). For now, Quickbundle only supports local compilation (i.e. generate executables compatible only with machines running the same operating system / architecture). Action: add a `--target` flag to specify a different operating system compilation target than the machine running the command.
|
|
197
|
-
|
|
198
|
-
<br>
|
|
199
|
-
|
|
200
194
|
## 🤩 Used by
|
|
201
195
|
|
|
202
196
|
- [@adbayb/stack](https://github.com/adbayb/stack) My opinionated toolbox for JavaScript/TypeScript projects.
|
package/dist/index.mjs
CHANGED
|
@@ -19,7 +19,7 @@ import os from 'node:os';
|
|
|
19
19
|
import { gzipSize } from 'gzip-size';
|
|
20
20
|
|
|
21
21
|
var name = "quickbundle";
|
|
22
|
-
var version = "0.0.0-next-
|
|
22
|
+
var version = "0.0.0-next-3b75337";
|
|
23
23
|
|
|
24
24
|
/**
|
|
25
25
|
* Resolve a relative path from the Quickbundle node modules directory.
|