Skip to content

Commit

Permalink
Remove old repo references
Browse files Browse the repository at this point in the history
  • Loading branch information
knolleary committed Sep 29, 2021
1 parent 984a485 commit 9c7f5f1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions update-types.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const path = require('path');
const fs = require('fs');
const rimraf = require('rimraf')
const {exec} = require('child_process');
const note = `\n/* NOTE: Do not edit directly! This file is generated using \`npm run update-types\` in https://github.com/Steve-Mcl/monaco-editor-esm-i18n */\n\n`;
const note = `\n/* NOTE: Do not edit directly! This file is generated using \`npm run update-types\` in https://github.com/node-red/nr-monaco-build */\n\n`;
const excludeLibs = ["base.d.ts","constants.d.ts","index.d.ts","inspector.d.ts","punycode.d.ts", "globals.global.d.ts", "repl.d.ts"];
const { createMinifier } = require("dts-minify");
const { findClosestSemverMatch, deleteFileOrDir, mkDirSafe} = require("./common");
Expand Down Expand Up @@ -51,7 +51,7 @@ const {
importLibs(NODE_LIB_SOURCE, NODE_LIB_DESTINATION);
copyFiles(NODE_RED_LIB_SOURCE, NODE_RED_LIB_DESTINATION);
});
});
});
})();


Expand Down Expand Up @@ -88,7 +88,7 @@ function copyFiles(src, dst) {
} else {
fs.writeFileSync(path.join(dst, name), output );
}

}
}
}
Expand All @@ -99,6 +99,6 @@ function copyFiles(src, dst) {
var srcDir = path.join(src, p);
var dstDir = path.join(dst, p);
copyFiles(srcDir, dstDir);
}
}
}
}

0 comments on commit 9c7f5f1

Please sign in to comment.