quickbundle 2.12.0 → 2.14.0

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/dist/index.js +3 -4
  2. package/package.json +8 -8
package/dist/index.js CHANGED
@@ -1,7 +1,6 @@
1
1
  import { helpers, termost } from 'termost';
2
2
  import { finished } from 'node:stream/promises';
3
3
  import { Readable } from 'node:stream';
4
- import process from 'node:process';
5
4
  import { resolve, dirname, join, basename } from 'node:path';
6
5
  import { copyFile as copyFile$1, rename, mkdir, writeFile as writeFile$1, rm, readFile as readFile$1 } from 'node:fs/promises';
7
6
  import { createWriteStream } from 'node:fs';
@@ -18,9 +17,6 @@ import commonjs from '@rollup/plugin-commonjs';
18
17
  import os from 'node:os';
19
18
  import { gzipSize } from 'gzip-size';
20
19
 
21
- var name = "quickbundle";
22
- var version = "2.12.0";
23
-
24
20
  /**
25
21
  * Resolve a relative path from the Quickbundle node modules directory.
26
22
  * @param paths - Relative paths.
@@ -591,6 +587,9 @@ const formatSize = (bytes)=>{
591
587
  return kiloBytes < 1 ? `${bytes} B` : `${kiloBytes.toFixed(2)} kB`;
592
588
  };
593
589
 
590
+ var name = "quickbundle";
591
+ var version = "2.14.0";
592
+
594
593
  const createProgram = (...commandBuilders)=>{
595
594
  const program = termost({
596
595
  name,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quickbundle",
3
- "version": "2.12.0",
3
+ "version": "2.14.0",
4
4
  "description": "The zero-configuration transpiler and bundler for the web",
5
5
  "keywords": [
6
6
  "library",
@@ -40,22 +40,22 @@
40
40
  "dist"
41
41
  ],
42
42
  "dependencies": {
43
- "@rollup/plugin-commonjs": "^28.0.3",
43
+ "@rollup/plugin-commonjs": "^28.0.6",
44
44
  "@rollup/plugin-json": "^6.1.0",
45
45
  "@rollup/plugin-node-resolve": "^16.0.1",
46
46
  "@rollup/plugin-url": "^8.0.2",
47
- "@swc/core": "^1.11.9",
47
+ "@swc/core": "^1.13.5",
48
48
  "decompress": "^4.2.1",
49
49
  "gzip-size": "^7.0.0",
50
- "rollup": "^4.35.0",
51
- "rollup-plugin-dts": "^6.1.1",
52
- "rollup-plugin-node-externals": "^8.0.0",
50
+ "rollup": "^4.48.0",
51
+ "rollup-plugin-dts": "^6.2.3",
52
+ "rollup-plugin-node-externals": "^8.1.0",
53
53
  "rollup-plugin-swc3": "^0.12.1",
54
- "termost": "^1.4.0"
54
+ "termost": "^1.8.0"
55
55
  },
56
56
  "devDependencies": {
57
57
  "@types/decompress": "4.2.7",
58
- "@types/node": "22.13.10"
58
+ "@types/node": "22.17.2"
59
59
  },
60
60
  "peerDependencies": {
61
61
  "typescript": "^4.7.0 || ^5.0.0"