8000 Subfolder structure is lost without file at lowest level. · Issue #1 · blackening/broccoli-typescript-incremental · GitHub
[go: up one dir, main page]

Skip to content
Subfolder structure is lost without file at lowest level. #1
@blackening

Description

@blackening

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)

Metadata

Metadata

Assignees

Labels

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions

    0