quickbundle 2.4.0 → 2.4.1

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/README.md +5 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -10,13 +10,17 @@
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 module bundler](https://rollupjs.org/) and [SWC transpiler](https://swc.rs/).
13
+ - Fast build and watch mode powered by Rollup[^1] and SWC[^2].
14
14
  - Zero configuration: define the build artifacts in your `package.json`, and you're all set!
15
15
  - Support of `cjs` & `esm` module formats output.
16
16
  - Support of several loaders including JavaScript, TypeScript, JSX, JSON, and Images.
17
17
  - TypeScript's declaration file (`.d.ts`) bundling.
18
18
  - Automatic dependency inclusion (`peerDependencies` and `dependencies` are not bundled in the final output, `devDependencies` are unless they're not imported).
19
19
 
20
+ [^1]: A [module bundler](https://rollupjs.org/) optimized for better tree-shaking processing and seamless interoperability of CommonJS and ESM formats with minimal code footprint.
21
+
22
+ [^2]: A [TypeScript / JavaScript transpiler](https://swc.rs/) for quicker code processing including TypeScript transpilation, JavaScript transformation, and, minification.
23
+
20
24
  <br>
21
25
 
22
26
  ## 🚀 Quick Start
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quickbundle",
3
- "version": "2.4.0",
3
+ "version": "2.4.1",
4
4
  "description": "The zero-configuration transpiler and bundler for the web",
5
5
  "author": {
6
6
  "name": "Ayoub Adib",
@@ -47,7 +47,7 @@
47
47
  }
48
48
  },
49
49
  "dependencies": {
50
- "@rollup/plugin-commonjs": "^28.0.0",
50
+ "@rollup/plugin-commonjs": "^28.0.1",
51
51
  "@rollup/plugin-json": "^6.1.0",
52
52
  "@rollup/plugin-node-resolve": "^15.3.0",
53
53
  "@rollup/plugin-url": "^8.0.2",