bem-site / bem-forum-content-ru

Content BEM forum for Russian speak users
MIT License
56 stars 6 forks source link

В сборку не включаются стили блока из bem-components #80

Open ghost opened 10 years ago

ghost commented 10 years ago

Добрый день.

Пытаюсь сделать так:

index.bemjson.js

({
    block: "page",
    title: 'index',
    head: [
        { elem: 'css', url: '_index.css' }
    ],
    scripts: [{ elem: 'js', url: '_index.js' }],
    content: [
        {
            block: 'simpleBlock'

        }
    ]
})

simbleBlock.bemhtml

block('simpleBlock')(
    js()(true),
    tag()('div'),
    content()(
    {
        block: 'button',
        text: 'Click Me',
        mods: {
            theme: 'normal',
            size: 'l'
        }
    })
)

simpleBlock.deps.js

({
    mustDeps: [
        {
            block: 'button'
        }
    ]
})

Проект стандартный project-stub. Что не так?

dab commented 10 years ago

Привет, я сделал все то, что ты описал, в результате получил страницу с кнопкой. Ты все делаешь так. Осталось понять в чем проблема.

Попробуй сбросить кеш с помощью bem make -m clean и снова запустить сервер.

ghost commented 10 years ago

Спасибо, помогло. про кэш не знал.