@p0security/cli 0.18.8 → 0.18.9

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/p0 +0 -13
  2. package/package.json +1 -1
package/p0 CHANGED
@@ -1,16 +1,3 @@
1
1
  #!/usr/bin/env node --no-deprecation
2
2
 
3
- const originalEmit = process.emit;
4
- process.emit = function (name, data, ...args) {
5
- if (
6
- name === `warning` &&
7
- typeof data === `object` &&
8
- data.name === `ExperimentalWarning` &&
9
- data.message.startsWith(`The Fetch API is an experimental feature.`)
10
- ) {
11
- return false;
12
- }
13
- return originalEmit.apply(process, arguments);
14
- };
15
-
16
3
  require(`${__dirname}/build/dist/index.js`).main();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@p0security/cli",
3
- "version": "0.18.8",
3
+ "version": "0.18.9",
4
4
  "description": "Execute infra CLI commands with P0 grants",
5
5
  "main": "index.ts",
6
6
  "repository": {