Skip to content

Commit e5fc93f

Browse files
committed
fixup! Fix build and export issues in rush-lib.
1 parent 49659fb commit e5fc93f

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

libraries/rush-lib/scripts/copyEmptyModules.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
const { FileSystem, Async, AsyncQueue } = require('@rushstack/node-core-library');
44

55
const JS_FILE_EXTENSION = '.js';
6-
const DTS_FILE_EXTENSION = '.d.ts';
76

87
module.exports = {
98
runAsync: async ({
@@ -46,10 +45,6 @@ module.exports = {
4645
const folderItems = await FileSystem.readFolderItemsAsync(folderPath);
4746
for (const folderItem of folderItems) {
4847
const itemName = folderItem.name;
49-
if (itemName === 'IRushPlugin.js') {
50-
debugger;
51-
}
52-
5348
const relativeItemPath = relativeFolderPath ? `${relativeFolderPath}/${itemName}` : itemName;
5449

5550
if (folderItem.isDirectory()) {

0 commit comments

Comments
 (0)