quickbundle 0.0.0-next-d7cf4c6 → 0.0.0-next-fb01be8

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.mjs +1 -6
  2. package/package.json +2 -1
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 = "0.0.0-next-d7cf4c6";
22
+ var version = "0.0.0-next-fb01be8";
23
23
 
24
24
  /**
25
25
  * Resolve a relative path from the Quickbundle node modules directory.
@@ -514,11 +514,6 @@ const compile = async ({ bin, input, osType })=>{
514
514
  if (osType === "macos") {
515
515
  await helpers.exec(`codesign --remove-signature ${executableFileName}`);
516
516
  }
517
- console.log({
518
- blobFileName,
519
- executableFileName,
520
- seaConfigFileName
521
- });
522
517
  await helpers.exec(`npx postject ${executableFileName} NODE_SEA_BLOB ${blobFileName} --sentinel-fuse NODE_SEA_FUSE_fce680ab2cc467b6e072b8b5df1996b2 ${osType === "macos" ? "--macho-segment-name NODE_SEA" : ""}`);
523
518
  if (osType === "macos") {
524
519
  await helpers.exec(`codesign --sign - ${executableFileName}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quickbundle",
3
- "version": "0.0.0-next-d7cf4c6",
3
+ "version": "0.0.0-next-fb01be8",
4
4
  "description": "The zero-configuration transpiler and bundler for the web",
5
5
  "keywords": [
6
6
  "library",
@@ -67,6 +67,7 @@
67
67
  },
68
68
  "scripts": {
69
69
  "build": "rollup --config ./bundler.config.ts --configPlugin rollup-plugin-swc3",
70
+ "test": "exit 0",
70
71
  "watch": "rollup --watch --config ./bundler.config.ts --configPlugin rollup-plugin-swc3"
71
72
  }
72
73
  }