Skip to content

Commit

Permalink
fix(skytrace): suppress all warnings from Node.js
Browse files Browse the repository at this point in the history
Temporary fix to suppress the following warning:

(node:72224) ExperimentalWarning: The Fetch API is an experimental feature. This feature could change at any time
(Use `node --trace-warnings ...` to show where the warning was created)

Which originates from one of the dependencies introduced by
adding telemetry.
  • Loading branch information
hassy committed Oct 19, 2023
1 parent 41ac4bd commit 28610be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/skytrace/bin/dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env node
#!/usr/bin/env node --no-warnings

const oclif = require('@oclif/core')

Expand Down
2 changes: 1 addition & 1 deletion packages/skytrace/bin/run
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env node
#!/usr/bin/env node --no-warnings

const oclif = require('@oclif/core')
const gradientString = require('gradient-string');
Expand Down

0 comments on commit 28610be

Please sign in to comment.