quickbundle 2.11.0 → 2.13.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.
|
@@ -18,9 +18,6 @@ import commonjs from '@rollup/plugin-commonjs';
|
|
|
18
18
|
import os from 'node:os';
|
|
19
19
|
import { gzipSize } from 'gzip-size';
|
|
20
20
|
|
|
21
|
-
var name = "quickbundle";
|
|
22
|
-
var version = "2.11.0";
|
|
23
|
-
|
|
24
21
|
/**
|
|
25
22
|
* Resolve a relative path from the Quickbundle node modules directory.
|
|
26
23
|
* @param paths - Relative paths.
|
|
@@ -591,6 +588,9 @@ const formatSize = (bytes)=>{
|
|
|
591
588
|
return kiloBytes < 1 ? `${bytes} B` : `${kiloBytes.toFixed(2)} kB`;
|
|
592
589
|
};
|
|
593
590
|
|
|
591
|
+
var name = "quickbundle";
|
|
592
|
+
var version = "2.13.0";
|
|
593
|
+
|
|
594
594
|
const createProgram = (...commandBuilders)=>{
|
|
595
595
|
const program = termost({
|
|
596
596
|
name,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "quickbundle",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.13.0",
|
|
4
4
|
"description": "The zero-configuration transpiler and bundler for the web",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"library",
|
|
@@ -29,33 +29,33 @@
|
|
|
29
29
|
"exports": {
|
|
30
30
|
".": {
|
|
31
31
|
"source": "./src/index.ts",
|
|
32
|
-
"default": "./dist/index.
|
|
32
|
+
"default": "./dist/index.js"
|
|
33
33
|
}
|
|
34
34
|
},
|
|
35
35
|
"bin": {
|
|
36
|
-
"quickbundle": "bin/index.
|
|
36
|
+
"quickbundle": "./bin/index.js"
|
|
37
37
|
},
|
|
38
38
|
"files": [
|
|
39
39
|
"bin",
|
|
40
40
|
"dist"
|
|
41
41
|
],
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@rollup/plugin-commonjs": "^28.0.
|
|
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.
|
|
47
|
+
"@swc/core": "^1.12.3",
|
|
48
48
|
"decompress": "^4.2.1",
|
|
49
49
|
"gzip-size": "^7.0.0",
|
|
50
|
-
"rollup": "^4.
|
|
51
|
-
"rollup-plugin-dts": "^6.
|
|
52
|
-
"rollup-plugin-node-externals": "^8.0.
|
|
50
|
+
"rollup": "^4.44.0",
|
|
51
|
+
"rollup-plugin-dts": "^6.2.1",
|
|
52
|
+
"rollup-plugin-node-externals": "^8.0.1",
|
|
53
53
|
"rollup-plugin-swc3": "^0.12.1",
|
|
54
54
|
"termost": "^1.4.0"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@types/decompress": "4.2.7",
|
|
58
|
-
"@types/node": "22.
|
|
58
|
+
"@types/node": "22.15.32"
|
|
59
59
|
},
|
|
60
60
|
"peerDependencies": {
|
|
61
61
|
"typescript": "^4.7.0 || ^5.0.0"
|
|
File without changes
|