@naturalcycles/dev-lib 16.6.0 → 16.6.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@naturalcycles/dev-lib",
3
- "version": "16.6.0",
3
+ "version": "16.6.1",
4
4
  "scripts": {
5
5
  "prepare": "husky",
6
6
  "tsn-debug": "tsn testScript.ts",
@@ -28,7 +28,6 @@
28
28
  "@naturalcycles/nodejs-lib": "^13",
29
29
  "@stylistic/eslint-plugin": "^4",
30
30
  "@types/node": "^22",
31
- "@types/yargs": "^16",
32
31
  "eslint": "^9",
33
32
  "eslint-plugin-import-x": "^4",
34
33
  "eslint-plugin-jsdoc": "^50",
@@ -48,6 +47,7 @@
48
47
  "yargs": "^17"
49
48
  },
50
49
  "devDependencies": {
50
+ "@types/yargs": "^16",
51
51
  "@vitest/coverage-v8": "^3",
52
52
  "stylelint": "^16",
53
53
  "stylelint-config-standard-scss": "^14",
@@ -1,5 +0,0 @@
1
- import yargs from 'yargs';
2
- /**
3
- * Quick yargs helper to make it work in esm.
4
- */
5
- export declare const _yargs: yargs.Argv<{}>;
@@ -1,10 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports._yargs = void 0;
4
- const tslib_1 = require("tslib");
5
- const yargs_1 = tslib_1.__importDefault(require("yargs"));
6
- const helpers_1 = require("yargs/helpers");
7
- /**
8
- * Quick yargs helper to make it work in esm.
9
- */
10
- exports._yargs = (0, yargs_1.default)((0, helpers_1.hideBin)(process.argv));