We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For broccoli-timepiece dist, with the following folder structure src | - index.ts | - subfolder | | - sub.ts
Depending on brocfile:
var files = new Funnel('src', { include: ['subfolder/**/*'] });
vs
var files = new Funnel('src', { include: ['index.ts', 'subfolder/**/*'] });
The following may be gotten: dist | - index.js | - subfolder | | - sub.js (Correct)
OR
dist | - sub.js (Wrong)
The text was updated successfully, but these errors were encountered:
Related to microsoft/TypeScript#812
Sorry, something went wrong.
50a0d97
Solved using microsoft/TypeScript#2772.
blackening
No branches or pull requests
For broccoli-timepiece dist,
with the following folder structure
src
| - index.ts
| - subfolder
| | - sub.ts
Depending on brocfile:
vs
The following may be gotten:
dist
| - index.js
| - subfolder
| | - sub.js
(Correct)
OR
dist
| - sub.js
(Wrong)
The text was updated successfully, but these errors were encountered: