this repo has no description
0
fork

Configure Feed

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

humanize-string → es-toolkit

+14 -31
+2 -2
commands/config/commands/show.js
··· 1 1 import {styleText} from 'node:util'; 2 2 import {Command} from 'commander'; 3 - import humanizeString from 'humanize-string'; 3 + import {upperFirst} from 'es-toolkit/string'; 4 4 import {getConfig, modes} from '../../../library/index.js'; 5 5 6 6 export default new Command('show') ··· 15 15 : '\u{2600}'; // Sun 16 16 17 17 console.log( 18 - `${styleText('yellow', icon)} ${humanizeString(mode)} mode profile: ${config.get(`profiles.${mode}`)}`, 18 + `${styleText('yellow', icon)} ${upperFirst(mode)} mode profile: ${config.get(`profiles.${mode}`)}`, 19 19 ); 20 20 } 21 21 });
+11 -28
package-lock.json
··· 17 17 "conf": "^15.0.2", 18 18 "consola": "^3.4.2", 19 19 "dark-mode": "^5.0.0", 20 - "humanize-string": "^3.1.0", 20 + "es-toolkit": "^1.45.1", 21 21 "mac-terminal": "^5.0.0", 22 22 "ow": "^3.0.0", 23 23 "p-memoize": "^8.0.0", ··· 2593 2593 } 2594 2594 } 2595 2595 }, 2596 - "node_modules/decamelize": { 2597 - "version": "6.0.1", 2598 - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-6.0.1.tgz", 2599 - "integrity": "sha512-G7Cqgaelq68XHJNGlZ7lrNQyhZGsFqpwtGFexqUv4IQdjKoSYF7ipZ9UuTJZUSQXFj/XaoBLuEVIVqr8EJngEQ==", 2600 - "license": "MIT", 2601 - "engines": { 2602 - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 2603 - }, 2604 - "funding": { 2605 - "url": "https://github.com/sponsors/sindresorhus" 2606 - } 2607 - }, 2608 2596 "node_modules/deep-is": { 2609 2597 "version": "0.1.4", 2610 2598 "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", ··· 3018 3006 "funding": { 3019 3007 "url": "https://github.com/sponsors/ljharb" 3020 3008 } 3009 + }, 3010 + "node_modules/es-toolkit": { 3011 + "version": "1.45.1", 3012 + "resolved": "https://registry.npmjs.org/es-toolkit/-/es-toolkit-1.45.1.tgz", 3013 + "integrity": "sha512-/jhoOj/Fx+A+IIyDNOvO3TItGmlMKhtX8ISAHKE90c4b/k1tqaqEZ+uUqfpU8DMnW5cgNJv606zS55jGvza0Xw==", 3014 + "license": "MIT", 3015 + "workspaces": [ 3016 + "docs", 3017 + "benchmarks" 3018 + ] 3021 3019 }, 3022 3020 "node_modules/escalade": { 3023 3021 "version": "3.2.0", ··· 4444 4442 "license": "Apache-2.0", 4445 4443 "engines": { 4446 4444 "node": ">=18.18.0" 4447 - } 4448 - }, 4449 - "node_modules/humanize-string": { 4450 - "version": "3.1.0", 4451 - "resolved": "https://registry.npmjs.org/humanize-string/-/humanize-string-3.1.0.tgz", 4452 - "integrity": "sha512-wEtOOR3sT8nZ7W0WZwEXo68z2EA0kpcpjaN/ZXxpps9PDzZdX8+TAj+XOGKx2WkagP9mnhWtFpfMNSd2WAhiIQ==", 4453 - "license": "MIT", 4454 - "dependencies": { 4455 - "decamelize": "^6.0.0" 4456 - }, 4457 - "engines": { 4458 - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 4459 - }, 4460 - "funding": { 4461 - "url": "https://github.com/sponsors/sindresorhus" 4462 4445 } 4463 4446 }, 4464 4447 "node_modules/identifier-regex": {
+1 -1
package.json
··· 36 36 "conf": "^15.0.2", 37 37 "consola": "^3.4.2", 38 38 "dark-mode": "^5.0.0", 39 - "humanize-string": "^3.1.0", 39 + "es-toolkit": "^1.45.1", 40 40 "mac-terminal": "^5.0.0", 41 41 "ow": "^3.0.0", 42 42 "p-memoize": "^8.0.0",