@goldskycom/cli 13.10.2 → 13.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/goldsky CHANGED
@@ -1,2 +1,7 @@
1
1
  #!/usr/bin/env node
2
+ // Silence runtime deprecation noise from dependencies (axios's proxy-from-env
3
+ // triggers DEP0169 `url.parse()` on every request) — end users can't act on
4
+ // it. Set before the require so it applies to everything the CLI loads;
5
+ // `node --trace-deprecation bin/goldsky …` still surfaces them when debugging.
6
+ process.noDeprecation = true;
2
7
  require("../dist/index.js");