Home
last modified time | relevance | path

Searched refs:hashFilePath (Results 1 – 2 of 2) sorted by relevance

/developtools/ace_js2bundle/ace-loader/src/
DgenAbc-plugin.js301 const hashFilePath = genHashJsonPath(buildPath);
302 if (hashFilePath.length == 0) {
308 if (fs.existsSync(hashFilePath)) {
309 jsonFile = fs.readFileSync(hashFilePath).toString();
353 const hashFilePath = genHashJsonPath(buildPathInfo);
354 if (hashFilePath.length == 0) {
357 fs.writeFileSync(hashFilePath, JSON.stringify(hashJsonObject));
776 const hashFilePath = genHashJsonPath(buildPathInfo);
777 if (hashFilePath.length !== 0 && fs.existsSync(hashFilePath)) {
778 fs.unlinkSync(hashFilePath);
/developtools/ace_ets2bundle/compiler/src/
Dgen_abc_plugin.ts868 const hashFilePath: string = genHashJsonPath(buildPath); constant
869 if (hashFilePath.length === 0) {
875 if (fs.existsSync(hashFilePath)) {
876 jsonFile = fs.readFileSync(hashFilePath).toString();
919 const hashFilePath: string = genHashJsonPath(buildPathInfo); constant
920 if (hashFilePath.length === 0) {
924 fs.writeFileSync(hashFilePath, JSON.stringify(moduleHashJsonObject));
933 const hashFilePath: string = genHashJsonPath(buildPath); constant
934 if (hashFilePath.length === 0) {
940 if (fs.existsSync(hashFilePath)) {
[all …]