diff --git a/compiler/src/fast_build/ark_compiler/cache.ts b/compiler/src/fast_build/ark_compiler/cache.ts index cfba824d3ac6ce2cbf359cb1931675b715c51eed..a7bb19658c59acbb455424a0673a9201a7bf1fc9 100644 --- a/compiler/src/fast_build/ark_compiler/cache.ts +++ b/compiler/src/fast_build/ark_compiler/cache.ts @@ -53,9 +53,7 @@ function getMetaInfo(projectConfig: any): string { const bundleName: string = projectConfig.bundleName ? projectConfig.bundleName : 'null_bundleName'; const allModuleNameHash: string = projectConfig.allModuleNameHash ? projectConfig.allModuleNameHash : 'null_allModuleNameHash'; - const aotCompileMode: string = projectConfig.aotCompileMode ? projectConfig.aotCompileMode : 'null_aotCompileMode'; - const apPath: string = projectConfig.apPath ? projectConfig.apPath : 'null_apPath'; - metaInfoArr.push(bundleName, allModuleNameHash, aotCompileMode, apPath); + metaInfoArr.push(bundleName, allModuleNameHash); } return metaInfoArr.join(':');