@travetto/pack 5.0.15 → 5.0.17

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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2023 ArcSine Technologies
3
+ Copyright (c) 2020 ArcSine Technologies
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@travetto/pack",
3
- "version": "5.0.15",
3
+ "version": "5.0.17",
4
4
  "description": "Code packing utilities",
5
5
  "keywords": [
6
6
  "travetto",
@@ -25,16 +25,16 @@
25
25
  "directory": "module/pack"
26
26
  },
27
27
  "dependencies": {
28
- "@rollup/plugin-commonjs": "^28.0.1",
28
+ "@rollup/plugin-commonjs": "^28.0.2",
29
29
  "@rollup/plugin-json": "^6.1.0",
30
- "@rollup/plugin-node-resolve": "^15.3.0",
30
+ "@rollup/plugin-node-resolve": "^16.0.0",
31
31
  "@rollup/plugin-terser": "^0.4.4",
32
- "@travetto/runtime": "^5.0.12",
33
- "@travetto/terminal": "^5.0.14",
34
- "rollup": "^4.24.0"
32
+ "@travetto/runtime": "^5.0.14",
33
+ "@travetto/terminal": "^5.0.16",
34
+ "rollup": "^4.28.1"
35
35
  },
36
36
  "peerDependencies": {
37
- "@travetto/cli": "^5.0.15"
37
+ "@travetto/cli": "^5.0.17"
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();