From 601fb9992383d066daa089245de4fb125db5deb7 Mon Sep 17 00:00:00 2001 From: zenghang Date: Fri, 20 Jun 2025 23:21:48 +0800 Subject: [PATCH] fix declgenPath Issue: ICGRLP Signed-off-by: zenghang Change-Id: I44063bec12b875ab9370dba453e9c35c084a827e --- .../fast_build/ark_compiler/interop/run_declgen_standalone.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/src/fast_build/ark_compiler/interop/run_declgen_standalone.ts b/compiler/src/fast_build/ark_compiler/interop/run_declgen_standalone.ts index b1cb71d67..64f2af444 100644 --- a/compiler/src/fast_build/ark_compiler/interop/run_declgen_standalone.ts +++ b/compiler/src/fast_build/ark_compiler/interop/run_declgen_standalone.ts @@ -35,7 +35,7 @@ import path from 'path'; import * as ts from 'typescript'; import { EXTNAME_D_ETS, EXTNAME_JS } from '../common/ark_define'; import { getRealModulePath } from '../../system_api/api_check_utils'; -import { generateInteropDecls } from 'declgen/build/src/generateInteropDecls'; +import { generateInteropDecls } from '../../../../node_modules/declgen/build/src/generateInteropDecls'; import { calculateFileHash } from '../utils'; export function run(param: Params): boolean { -- Gitee