bod 0.0.0-672 → 0.0.0-740

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/README.md CHANGED
@@ -8,7 +8,7 @@
8
8
  [![CDN](https://img.shields.io/npm/v/bod?label=CDN&logo=cloudflare&style=for-the-badge)](https://unpkg.com/browse/bod@latest/)
9
9
 
10
10
  [![CI](https://img.shields.io/github/workflow/status/sabertazimi/bod/CI/main?style=for-the-badge&logo=github)](https://github.com/sabertazimi/bod/actions/workflows/ci.yml)
11
- [![Jest Coverage](https://img.shields.io/coveralls/github/sabertazimi/bod?logo=coveralls&style=for-the-badge)](https://coveralls.io/github/sabertazimi/bod)
11
+ [![Jest Coverage](https://img.shields.io/codecov/c/github/sabertazimi/bod?logo=codecov&style=for-the-badge)](https://codecov.io/gh/sabertazimi/bod)
12
12
  [![Jest Coverage](https://raw.githubusercontents.com/sabertazimi/bod/gh-pages/coverage-lines.svg)](https://github.com/sabertazimi/bod/actions/workflows/ci.yml)
13
13
 
14
14
  Boilerplate CLI App - Create a new project powered by Create React App and @sabertazimi/react-scripts.
@@ -1,5 +1,4 @@
1
1
  import { color, printer } from './console';
2
2
  import { inquirer, program } from './core';
3
- import { isCI, rimraf } from './dev';
4
3
  import { envinfo, spawn } from './os';
5
- export { color, printer, inquirer, program, envinfo, spawn, isCI, rimraf };
4
+ export { color, printer, inquirer, program, envinfo, spawn };
@@ -1,15 +1,12 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.rimraf = exports.isCI = exports.spawn = exports.envinfo = exports.program = exports.inquirer = exports.printer = exports.color = void 0;
3
+ exports.spawn = exports.envinfo = exports.program = exports.inquirer = exports.printer = exports.color = void 0;
4
4
  const console_1 = require("./console");
5
5
  Object.defineProperty(exports, "color", { enumerable: true, get: function () { return console_1.color; } });
6
6
  Object.defineProperty(exports, "printer", { enumerable: true, get: function () { return console_1.printer; } });
7
7
  const core_1 = require("./core");
8
8
  Object.defineProperty(exports, "inquirer", { enumerable: true, get: function () { return core_1.inquirer; } });
9
9
  Object.defineProperty(exports, "program", { enumerable: true, get: function () { return core_1.program; } });
10
- const dev_1 = require("./dev");
11
- Object.defineProperty(exports, "isCI", { enumerable: true, get: function () { return dev_1.isCI; } });
12
- Object.defineProperty(exports, "rimraf", { enumerable: true, get: function () { return dev_1.rimraf; } });
13
10
  const os_1 = require("./os");
14
11
  Object.defineProperty(exports, "envinfo", { enumerable: true, get: function () { return os_1.envinfo; } });
15
12
  Object.defineProperty(exports, "spawn", { enumerable: true, get: function () { return os_1.spawn; } });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bod",
3
- "version": "0.0.0-672",
3
+ "version": "0.0.0-740",
4
4
  "description": "Boilerplate CLI App",
5
5
  "scripts": {
6
6
  "build": "npm run clean && npm run compile",
@@ -58,7 +58,7 @@
58
58
  "consola": "^2.15.3",
59
59
  "cross-spawn": "^7.0.3",
60
60
  "envinfo": "^7.8.1",
61
- "inquirer": "^8.1.2"
61
+ "inquirer": "^8.1.5"
62
62
  },
63
63
  "devDependencies": {
64
64
  "@types/cross-spawn": "^6.0.2",
@@ -68,5 +68,5 @@
68
68
  "ci-info": "^3.2.0",
69
69
  "rimraf": "^3.0.2"
70
70
  },
71
- "gitHead": "a7896903cdb55c48b89b00015e431acfaedd64dd"
71
+ "gitHead": "e47566bdc1a129ecadf059b5641ec98118e7113e"
72
72
  }
@@ -1,3 +0,0 @@
1
- import { isCI } from 'ci-info';
2
- import rimraf from 'rimraf';
3
- export { isCI, rimraf };
package/dist/utils/dev.js DELETED
@@ -1,8 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.rimraf = exports.isCI = void 0;
4
- const tslib_1 = require("tslib");
5
- const ci_info_1 = require("ci-info");
6
- Object.defineProperty(exports, "isCI", { enumerable: true, get: function () { return ci_info_1.isCI; } });
7
- const rimraf_1 = (0, tslib_1.__importDefault)(require("rimraf"));
8
- exports.rimraf = rimraf_1.default;