diff --git a/packages/ice/src/bundler/types.ts b/packages/ice/src/bundler/types.ts index 02fe5ce786..61459b67b2 100644 --- a/packages/ice/src/bundler/types.ts +++ b/packages/ice/src/bundler/types.ts @@ -1,7 +1,7 @@ import type { Config } from '@ice/shared-config/types'; import type ora from '@ice/bundles/compiled/ora/index.js'; import type { Stats as WebpackStats } from '@ice/bundles/compiled/webpack/index.js'; -import type { AppConfig } from '@ice/runtime'; +import type { AppConfig } from '@ice/runtime-kit'; import type { Configuration, MultiCompiler, MultiStats } from '@rspack/core'; import type { Context as DefaultContext, TaskConfig } from 'build-scripts'; import type { ServerCompiler, GetAppConfig, GetRoutesConfig, GetDataloaderConfig, ExtendsPluginAPI } from '../types/plugin.js'; diff --git a/packages/ice/src/createService.ts b/packages/ice/src/createService.ts index e7d2bdc110..ed839545df 100644 --- a/packages/ice/src/createService.ts +++ b/packages/ice/src/createService.ts @@ -7,7 +7,7 @@ import webpack from '@ice/bundles/compiled/webpack/index.js'; import { Context } from 'build-scripts'; import type { CommandArgs, CommandName, TaskConfig } from 'build-scripts'; import type { Config } from '@ice/shared-config/types'; -import type { AppConfig } from '@ice/runtime'; +import type { AppConfig } from '@ice/runtime-kit'; import * as config from './config.js'; import test from './commands/test.js'; import webpackBundler from './bundler/webpack/index.js'; diff --git a/packages/ice/src/utils/getRouterBasename.ts b/packages/ice/src/utils/getRouterBasename.ts index 4ad0e90ec5..482bf8591d 100644 --- a/packages/ice/src/utils/getRouterBasename.ts +++ b/packages/ice/src/utils/getRouterBasename.ts @@ -1,4 +1,4 @@ -import type { AppConfig } from '@ice/runtime'; +import type { AppConfig } from '@ice/runtime-kit'; import type { Config } from '@ice/shared-config/types'; import type { TaskConfig } from 'build-scripts';