Home
last modified time | relevance | path

Searched refs:manifestFilePath (Results 1 – 6 of 6) sorted by relevance

/developtools/ace_js2bundle/ace-loader/
Dmain.product.js49 function readManifest(manifestFilePath) { argument
52 if (fs.existsSync(manifestFilePath)) {
53 const jsonString = fs.readFileSync(manifestFilePath).toString();
63 function loadEntryObj(projectPath, device_level, abilityType, manifestFilePath) { argument
69 entryObj = addPageEntryObj(readManifest(manifestFilePath), projectPath);
78 entryObj = addPageEntryObj(readManifest(manifestFilePath), projectPath);
/developtools/ace_js2bundle/ace-loader/src/
Dmanifest-loader.js20 const manifestFilePath = process.env.aceManifestPath || path.resolve(projectPath, 'manifest.json'); constant
24 const queryString = utils.getRequireString(this, manifestPlugin, manifestFilePath);
Dresource-plugin.js30 let manifestFilePath = ''; variable
/developtools/ace_ets2bundle/compiler/
Dmain.js81 projectConfig.manifestFilePath = projectConfig.manifestFilePath || process.env.aceManifestPath ||
130 if (fs.existsSync(projectConfig.manifestFilePath)) {
131 const jsonString = fs.readFileSync(projectConfig.manifestFilePath).toString();
142 …throw Error('\u001b[31m ERROR: the manifest file ' + projectConfig.manifestFilePath.replace(/\\/g,…
Dwebpack.config.js214 projectConfig.manifestFilePath = envArgs.aceManifestPath;
/developtools/ace_ets2bundle/compiler/src/fast_build/common/
Dprocess_project_config.ts72 if (fs.existsSync(projectConfig.manifestFilePath)) {
74 src: projectConfig.manifestFilePath,