Skip to content
New issue

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

Subfolder structure is lost without file at lowest level. #1

Closed
blackening opened this issue Nov 1, 2015 · 2 comments
Closed

Subfolder structure is lost without file at lowest level. #1

blackening opened this issue Nov 1, 2015 · 2 comments
Assignees
Labels

Comments

@blackening
Copy link
Owner

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)

@blackening blackening self-assigned this Nov 1, 2015
@blackening
Copy link
Owner Author

Related to microsoft/TypeScript#812

@blackening
Copy link
Owner Author

Solved using microsoft/TypeScript#2772.

@blackening blackening added the bug label Nov 1, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant