quickbundle 0.0.0-next-bc06d62 → 0.0.0-next-e351a81

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 CHANGED
@@ -173,6 +173,12 @@ Enabling source map generation is needed only if a build is [obfuscated (minifie
173
173
 
174
174
  <br>
175
175
 
176
+ ## ☑️ Roadmap
177
+
178
+ - [ ] 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.
179
+
180
+ <br>
181
+
176
182
  ## 🤩 Used by
177
183
 
178
184
  - [@adbayb/stack](https://github.com/adbayb/stack) My opinionated toolbox for JavaScript/TypeScript projects.
@@ -195,3 +201,5 @@ We're open to new contributions, you can find more details [here](./CONTRIBUTING
195
201
  ## 📖 License
196
202
 
197
203
  [MIT](./LICENSE "License MIT").
204
+
205
+ <br>
package/dist/index.mjs CHANGED
@@ -15,7 +15,7 @@ import os from 'node:os';
15
15
  import { gzipSize } from 'gzip-size';
16
16
 
17
17
  var name = "quickbundle";
18
- var version = "0.0.0-next-bc06d62";
18
+ var version = "0.0.0-next-e351a81";
19
19
 
20
20
  const CWD = process.cwd();
21
21
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quickbundle",
3
- "version": "0.0.0-next-bc06d62",
3
+ "version": "0.0.0-next-e351a81",
4
4
  "description": "The zero-configuration transpiler and bundler for the web",
5
5
  "author": {
6
6
  "name": "Ayoub Adib",