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

Примерная реализация обёртки над enb #2

Open
belozer opened this issue Mar 19, 2018 · 1 comment
Open

Comments

@belozer
Copy link

belozer commented Mar 19, 2018

У нас на проекте пока есть соображения, как сделать хэлпер bem build (по сути bem make)

Некоторые наработки видения реализации

Хранить конфигурационный файл бандлов. Как-то так

[{
    bundle : 'page_shop_orders',
    platforms : ['touch', 'desktop', 'print']
    decl : [
        {
            block : 'page',
            mods : { theme : 'hm', view : 'orders' },
        }
    ]
}, {
    bundle : 'page_admin_orders',
    platforms : ['desktop', 'print'],
    decl : [
        {
            block : 'page',
            mods : { theme : 'light', view : 'orders' },
        }
    ]
}]
bem build page_shop_index@desktop 
// только desktop

bem build page_shop_index 
// все платформы

bem build page_shop_index -f
// с чисткой кэша

Запуск сборки синкает delc бандла c декларацией бандла на fs (перезатирая) и запускает сборку через enb.
Над конфигами для модуля ещё не думали, но там должны быть прописаны пути ("маски") для сохранения bemdecl на файловой системе.

bundleDir : {platform}.bundles/{name}
bundleDir : bundles/{platform}/{name}
@belozer
Copy link
Author

belozer commented Mar 21, 2018

По мотивам: bem/project-stub#160

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant