• Home
  • Raw
  • Download

Lines Matching refs:buildPath

153   buildPath: string;  property in EntryInfo
156 constructor(npmInfo: string, buildPath: string, entry: string) {
158 this.buildPath = buildPath;
325 …EntryPath: string = genBuildPath(fakeEntryPath, projectConfig.projectPath, projectConfig.buildPath,
515 mkdirsSync(projectConfig.buildPath);
516 let sourceMapFilePath: string = path.join(projectConfig.buildPath, SOURCEMAPS);
547 … buildFilePath: string = genBuildPath(filePath, projectConfig.projectPath, projectConfig.buildPath,
590 const outputABCPath: string = path.join(projectConfig.buildPath, MODULES_ABC);
625 function writeFileSync(inputString: string, buildPath: string, keyPath: string, jsBundleFile: strin…
626 let output = path.resolve(buildPath, keyPath);
634 let buildDirArr: string[] = projectConfig.buildPath.split(path.sep);
854 function filterIntermediateModuleByHashJson(buildPath: string, moduleInfos: Array<ModuleInfo>): voi…
869 const hashFilePath: string = genHashJsonPath(buildPath);
928 function filterIntermediateJsBundleByHashJson(buildPath: string, inputPaths: File[]): void {
934 const hashFilePath: string = genHashJsonPath(buildPath);
992 function genHashJsonPath(buildPath: string): string {
993 buildPath = toUnixPath(buildPath);
999 let buildDirArr: string[] = projectConfig.buildPath.split(path.sep);
1005 } else if (buildPath.indexOf(ARK) >= 0) {
1006 const dataTmps: string[] = buildPath.split(ARK);
1192 mkdirsSync(projectConfig.buildPath);
1193 …ergeAbc}" --input "@${protoFilePath}" --outputFilePath "${projectConfig.buildPath}" --output ${MOD…
1354 const appAbc: string = path.join(projectConfig.buildPath, MODULES_ABC);