We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49659fb commit e5fc93fCopy full SHA for e5fc93f
libraries/rush-lib/scripts/copyEmptyModules.js
@@ -3,7 +3,6 @@
3
const { FileSystem, Async, AsyncQueue } = require('@rushstack/node-core-library');
4
5
const JS_FILE_EXTENSION = '.js';
6
-const DTS_FILE_EXTENSION = '.d.ts';
7
8
module.exports = {
9
runAsync: async ({
@@ -46,10 +45,6 @@ module.exports = {
46
45
const folderItems = await FileSystem.readFolderItemsAsync(folderPath);
47
for (const folderItem of folderItems) {
48
const itemName = folderItem.name;
49
- if (itemName === 'IRushPlugin.js') {
50
- debugger;
51
- }
52
-
53
const relativeItemPath = relativeFolderPath ? `${relativeFolderPath}/${itemName}` : itemName;
54
55
if (folderItem.isDirectory()) {
0 commit comments