ani-cli-npm 2.0.1 → 2.0.3

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/bin/index.js +2 -1
  2. package/package.json +3 -3
package/bin/index.js CHANGED
@@ -1,9 +1,10 @@
1
+ #!/usr/bin/env node
1
2
  "use strict";
2
- // process.removeAllListeners() // Ignore warning
3
3
  var __importDefault = (this && this.__importDefault) || function (mod) {
4
4
  return (mod && mod.__esModule) ? mod : { "default": mod };
5
5
  };
6
6
  Object.defineProperty(exports, "__esModule", { value: true });
7
+ process.removeAllListeners(); // Ignore warning
7
8
  // External
8
9
  const appdata_path_1 = __importDefault(require("appdata-path"));
9
10
  const chalk = require("chalk");
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "ani-cli-npm",
3
- "version": "2.0.1",
3
+ "version": "2.0.3",
4
4
  "description": "ani-cli tool rewritten as npm package",
5
5
  "main": "bin/index.js",
6
6
  "scripts": {
7
7
  "build": "tsc",
8
- "start": "node --no-warnings bin/index.js"
8
+ "start": "node bin/index.js"
9
9
  },
10
10
  "repository": {
11
11
  "type": "git",
@@ -25,7 +25,7 @@
25
25
  "author": "bumpkin-pi",
26
26
  "license": "ISC",
27
27
  "bin": {
28
- "multiply": "bin/index.js.old"
28
+ "ani-cli-npm": "/bin/index.js"
29
29
  },
30
30
  "dependencies": {
31
31
  "@types/node-fetch": "^2.6.2",