bem-techs-core
v0.3.1
Published
Core bem tech modules
Downloads
6
Readme
Bem Core Tech Modules
A set of core technology modules not included in bem-tools distribution.
Technologies included
- bemhtml;
- bemtree;
- vanilla.js;
- node.js;
- browser.js;
- browser.js+bemhtml;
- html;
- md;
Usage
Install via
npm
:npm install bem-core-techs
Configure your
level.js
to use technologies from a package:var coreTechs = require('bem-techs-core'); exports.getTechs = function() { return { //your setup code 'bemhtml': coreTechs.resolveTech('bemhtml'), 'vanilla.js': coreTechs.resolveTech('vanilla.js') }; };