this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

remove @commander-js/extra-typings

+3 -14
-10
package-lock.json
··· 12 12 "darwin" 13 13 ], 14 14 "dependencies": { 15 - "@commander-js/extra-typings": "^14.0.0", 16 15 "commander": "^14.0.0", 17 16 "conf": "^15.0.2", 18 17 "consola": "^3.4.2", ··· 300 299 }, 301 300 "engines": { 302 301 "node": ">=6.9.0" 303 - } 304 - }, 305 - "node_modules/@commander-js/extra-typings": { 306 - "version": "14.0.0", 307 - "resolved": "https://registry.npmjs.org/@commander-js/extra-typings/-/extra-typings-14.0.0.tgz", 308 - "integrity": "sha512-hIn0ncNaJRLkZrxBIp5AsW/eXEHNKYQBh0aPdoUqNgD+Io3NIykQqpKFyKcuasZhicGaEZJX/JBSIkZ4e5x8Dg==", 309 - "license": "MIT", 310 - "peerDependencies": { 311 - "commander": "~14.0.0" 312 302 } 313 303 }, 314 304 "node_modules/@e18e/eslint-plugin": {
-1
package.json
··· 44 44 "unused:fix": "npm run _knip -- --fix" 45 45 }, 46 46 "dependencies": { 47 - "@commander-js/extra-typings": "^14.0.0", 48 47 "commander": "^14.0.0", 49 48 "conf": "^15.0.2", 50 49 "consola": "^3.4.2",
+1 -1
source/cli/commands/config/set-mode.js
··· 1 - import {Argument, Command} from '@commander-js/extra-typings'; 1 + import {Argument, Command} from 'commander'; 2 2 import {getTerminalProfiles} from 'mac-terminal'; 3 3 import * as actions from '#cli/actions'; 4 4
+1 -1
source/cli/commands/config/set.js
··· 1 - import {Command} from '@commander-js/extra-typings'; 1 + import {Command} from 'commander'; 2 2 import setMode from './set-mode.js'; 3 3 import * as actions from '#cli/actions'; 4 4 import {modes} from '#library';
+1 -1
source/cli/commands/update.js
··· 1 - import {Argument, Command} from '@commander-js/extra-typings'; 1 + import {Argument, Command} from 'commander'; 2 2 import * as actions from '#cli/actions'; 3 3 import {modes} from '#library'; 4 4