quickbundle 2.9.0 → 2.11.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.
package/bin/index.mjs CHANGED
@@ -1,8 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- import { join } from "node:path";
4
3
  import { createRequire } from "node:module";
5
4
 
6
5
  const package_ = createRequire(import.meta.url)("../package.json");
7
6
 
8
- import(join("..", package_.exports["."].default));
7
+ import(new URL(`../${package_.exports["."].default}`, import.meta.url));
package/dist/index.mjs CHANGED
@@ -19,7 +19,7 @@ import os from 'node:os';
19
19
  import { gzipSize } from 'gzip-size';
20
20
 
21
21
  var name = "quickbundle";
22
- var version = "2.9.0";
22
+ var version = "2.11.0";
23
23
 
24
24
  /**
25
25
  * Resolve a relative path from the Quickbundle node modules directory.
@@ -331,7 +331,10 @@ const createTypesConfig = (entryPoints, options)=>{
331
331
  }),
332
332
  dts({
333
333
  compilerOptions: {
334
- incremental: false
334
+ declaration: true,
335
+ emitDeclarationOnly: true,
336
+ incremental: false,
337
+ preserveSymlinks: false
335
338
  },
336
339
  respectExternal: true
337
340
  })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quickbundle",
3
- "version": "2.9.0",
3
+ "version": "2.11.0",
4
4
  "description": "The zero-configuration transpiler and bundler for the web",
5
5
  "keywords": [
6
6
  "library",
@@ -40,14 +40,14 @@
40
40
  "dist"
41
41
  ],
42
42
  "dependencies": {
43
- "@rollup/plugin-commonjs": "^28.0.2",
43
+ "@rollup/plugin-commonjs": "^28.0.3",
44
44
  "@rollup/plugin-json": "^6.1.0",
45
- "@rollup/plugin-node-resolve": "^16.0.0",
45
+ "@rollup/plugin-node-resolve": "^16.0.1",
46
46
  "@rollup/plugin-url": "^8.0.2",
47
- "@swc/core": "^1.10.18",
47
+ "@swc/core": "^1.11.9",
48
48
  "decompress": "^4.2.1",
49
49
  "gzip-size": "^7.0.0",
50
- "rollup": "^4.34.8",
50
+ "rollup": "^4.35.0",
51
51
  "rollup-plugin-dts": "^6.1.1",
52
52
  "rollup-plugin-node-externals": "^8.0.0",
53
53
  "rollup-plugin-swc3": "^0.12.1",
@@ -55,7 +55,7 @@
55
55
  },
56
56
  "devDependencies": {
57
57
  "@types/decompress": "4.2.7",
58
- "@types/node": "22.13.5"
58
+ "@types/node": "22.13.10"
59
59
  },
60
60
  "peerDependencies": {
61
61
  "typescript": "^4.7.0 || ^5.0.0"