Skip to content

Fixed an important bug with deps

Compare
Choose a tag to compare
@f0rmat1k f0rmat1k released this 27 Mar 18:37
· 61 commits to master since this release

Before 2.2.2 deps files with array on the first level was processing incorrectly, e.g.

([
    {
        tech: 'js',
        shouldDeps: [ { block: "foo", tech: "bemhtml" } ]
    },
    {
        mustDeps: [],
        shouldDeps: [
            { elems: ['foo', 'baz'] }
        ]
    }
]);

Now it fixed.