From cac459c183c9d66e45dcb8bb9afd849a8814fa82 Mon Sep 17 00:00:00 2001 From: fengmk2 Date: Wed, 8 May 2024 10:20:30 +0800 Subject: [PATCH] feat: use @eggjs/utils@3 (#268) ## Summary by CodeRabbit - **Chores** - Updated project dependencies to enhance performance and stability. - **Tests** - Expanded test environments to include additional Node.js versions, ensuring broader compatibility. --- package.json | 2 +- src/cmd/dev.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 39dd343..4e0aadf 100644 --- a/package.json +++ b/package.json @@ -17,10 +17,10 @@ "@artus-cli/artus-cli": "^0.2.9", "@artus-cli/plugin-autocomplete": "^0.1.1", "@artus-cli/plugin-version": "^1.0.1", + "@eggjs/utils": "^3.0.1", "c8": "^9.0.0", "detect-port": "^1.3.0", "egg-ts-helper": "^2.1.0", - "egg-utils": "^2.4.1", "globby": "^11.1.0", "jest-changed-files": "^29.4.2", "mocha": "^10.2.0", diff --git a/src/cmd/dev.ts b/src/cmd/dev.ts index 5a72baa..aa21b8b 100644 --- a/src/cmd/dev.ts +++ b/src/cmd/dev.ts @@ -1,7 +1,7 @@ import { debuglog } from 'node:util'; import path from 'node:path'; import { DefineCommand, Option } from '@artus-cli/artus-cli'; -import utils from 'egg-utils'; +import utils from '@eggjs/utils'; import detect from 'detect-port'; import { BaseCommand } from './base';