@travetto/pack 5.0.15 → 5.0.16

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@travetto/pack",
3
- "version": "5.0.15",
3
+ "version": "5.0.16",
4
4
  "description": "Code packing utilities",
5
5
  "keywords": [
6
6
  "travetto",
@@ -29,12 +29,12 @@
29
29
  "@rollup/plugin-json": "^6.1.0",
30
30
  "@rollup/plugin-node-resolve": "^15.3.0",
31
31
  "@rollup/plugin-terser": "^0.4.4",
32
- "@travetto/runtime": "^5.0.12",
33
- "@travetto/terminal": "^5.0.14",
32
+ "@travetto/runtime": "^5.0.13",
33
+ "@travetto/terminal": "^5.0.15",
34
34
  "rollup": "^4.24.0"
35
35
  },
36
36
  "peerDependencies": {
37
- "@travetto/cli": "^5.0.15"
37
+ "@travetto/cli": "^5.0.16"
38
38
  },
39
39
  "peerDependenciesMeta": {
40
40
  "@travetto/cli": {
@@ -139,7 +139,6 @@ export abstract class BasePackCommand implements CliCommandShape {
139
139
 
140
140
  // Collect binary dependencies
141
141
  const binaryDeps = await this.getBinaryDependencies();
142
- console.log('Binary Dependencies:', binaryDeps);
143
142
  this.externalDependencies = [...this.externalDependencies, ...binaryDeps];
144
143
 
145
144
  const stream = this.runOperations();