quickbundle 2.5.0 → 2.5.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.
package/README.md CHANGED
@@ -43,6 +43,8 @@ yarn add quickbundle
43
43
  ```jsonc
44
44
  {
45
45
  "name": "lib", // Package name
46
+ "type": "module", // Optional if you want Node-like runtime to process by default `.js` file as ESM modules.
47
+ "sideEffects": false, // Mark the package as a side-effect-free one to support the consumer dead-code elimination (tree-shaking) process. If your library contains global side effects (ideally, it should be avoided), configure the field to list the files that do have side effects.
46
48
  "exports": {
47
49
  ".": {
48
50
  "source": "src/index.ts(x)?", // Source code entry point.
@@ -66,6 +68,8 @@ yarn add quickbundle
66
68
  ```jsonc
67
69
  {
68
70
  "name": "lib", // Package name
71
+ "type": "module", // Optional if you want Node-like runtime to process by default `.js` file as ESM modules.
72
+ "sideEffects": false, // Mark the package as a side-effect-free one to support the consumer dead-code elimination (tree-shaking) process. If your library contains global side effects (ideally, it should be avoided), configure the field to list the files that do have side effects.
69
73
  "exports": {
70
74
  ".": {
71
75
  "source": "src/index.ts(x)?", // Source code entry point.
package/dist/index.mjs CHANGED
@@ -337,7 +337,7 @@ const createWatchCommand = (program)=>{
337
337
  };
338
338
 
339
339
  const createProgram = (...commandBuilders)=>{
340
- const program = termost("The zero-configuration bundler powered by ESBuild");
340
+ const program = termost("The zero-configuration transpiler and bundler for the web");
341
341
  for (const commandBuilder of commandBuilders){
342
342
  commandBuilder(program);
343
343
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quickbundle",
3
- "version": "2.5.0",
3
+ "version": "2.5.1",
4
4
  "description": "The zero-configuration transpiler and bundler for the web",
5
5
  "author": {
6
6
  "name": "Ayoub Adib",
@@ -52,6 +52,7 @@
52
52
  "@rollup/plugin-json": "^6.1.0",
53
53
  "@rollup/plugin-node-resolve": "^15.3.0",
54
54
  "@rollup/plugin-url": "^8.0.2",
55
+ "@swc/core": "^1.7.40",
55
56
  "gzip-size": "^7.0.0",
56
57
  "rollup": "^4.24.0",
57
58
  "rollup-plugin-dts": "^6.1.1",