• 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,
514 mkdirsSync(projectConfig.buildPath);
515 let sourceMapFilePath: string = path.join(projectConfig.buildPath, SOURCEMAPS);
546 … buildFilePath: string = genBuildPath(filePath, projectConfig.projectPath, projectConfig.buildPath,
589 const outputABCPath: string = path.join(projectConfig.buildPath, MODULES_ABC);
624 function writeFileSync(inputString: string, buildPath: string, keyPath: string, jsBundleFile: strin…
625 let output = path.resolve(buildPath, keyPath);
633 let buildDirArr: string[] = projectConfig.buildPath.split(path.sep);
853 function filterIntermediateModuleByHashJson(buildPath: string, moduleInfos: Array<ModuleInfo>): voi…
868 const hashFilePath: string = genHashJsonPath(buildPath);
927 function filterIntermediateJsBundleByHashJson(buildPath: string, inputPaths: File[]): void {
933 const hashFilePath: string = genHashJsonPath(buildPath);
991 function genHashJsonPath(buildPath: string): string {
992 buildPath = toUnixPath(buildPath);
998 let buildDirArr: string[] = projectConfig.buildPath.split(path.sep);
1004 } else if (buildPath.indexOf(ARK) >= 0) {
1005 const dataTmps: string[] = buildPath.split(ARK);
1191 mkdirsSync(projectConfig.buildPath);
1192 …ergeAbc}" --input "@${protoFilePath}" --outputFilePath "${projectConfig.buildPath}" --output ${MOD…
1353 const appAbc: string = path.join(projectConfig.buildPath, MODULES_ABC);