What if we have something like this:
common.blocks/icon/
├── _type
│ ├── icon_type_arrow.assets
│ │ ├── arrow-b.svg
│ │ ├── arrow-l.svg
│ │ ├── arrow-r.svg
│ │ └── arrow-t.svg
│ ├── icon_type_arrow.css
│ ├── icon_type_close.assets
│ │ └── close.svg
│ └── icon_type_close.css
├── icon.bemhtml.js
├── icon.bh.js
├── icon.css
├── icon.deps.js
so we have .assets technology. Now we expect only files like icon.css or icon.js. What should we give to our users?
bundle.src({
tech: 'assets',
extensions: ['assets']
}).pipe(' What we have here?')
What if we have something like this:
so we have
.assetstechnology. Now we expect only files likeicon.cssoricon.js. What should we give to our users?