Skip to content
This repository has been archived by the owner on Jan 13, 2018. It is now read-only.

Commit

Permalink
0.5.26
Browse files Browse the repository at this point in the history
  • Loading branch information
scf2k committed Mar 6, 2013
2 parents d2f4e1c + af7ee5e commit 01fd745
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
4 changes: 4 additions & 0 deletions ChangeLog.md
@@ -1,5 +1,9 @@
bem-tools changelog
===================
06.03.2013, Version 0.5.26 (stable)
- bem make: Magic nodes doesn't link the nodes it creates with parent magic nodes (Closes #306)
- deps.js: don't swallow parsing errors (Closes #353)

14.02.2013, Version 0.5.25 (stable)
-----------------------------------

Expand Down
5 changes: 4 additions & 1 deletion lib/nodes/bundle.js
Expand Up @@ -10,6 +10,7 @@ var Q = require('q'),
BemBuildNode = require('./build'),
BemDeclNode = require('./decl'),
BorschikNode = require('./borschik'),
MagicNode = require('./magic'),

registry = require('../nodesregistry'),
LOGGER = require('../logger'),
Expand Down Expand Up @@ -47,7 +48,9 @@ registry.decl(BundleNodeName, BlockNode, /** @lends BundleNode.prototype */ {
root: this.root,
path: this.path
});
arch.setNode(bundleNode, arch.getParents(this));
arch.setNode(bundleNode, arch.getParents(this).filter(function(p) {
return !(arch.getNode(p) instanceof MagicNode.MagicNode);
}), this);
}

// generate targets for page files
Expand Down
2 changes: 1 addition & 1 deletion npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "bem",
"description": "BEM Tools",
"version": "0.5.25",
"version": "0.5.26",
"homepage": "http://github.com/bem/bem-tools",
"author": "Sergey Berezhnoy <veged@mail.ru> (http://github.com/veged)",
"maintainers": [
Expand Down

0 comments on commit 01fd745

Please sign in to comment.