This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "bem-project-stub", | |
| "version": "1.4.0", | |
| "description": "BEM project stub", | |
| "bugs": "https://github.com/bem/project-stub/issues", | |
| "ignore": [ | |
| ".bem/cache", | |
| "node_modules", | |
| "libs" | |
| ], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var techs = { | |
| // essential | |
| fileProvider: require('enb/techs/file-provider'), | |
| fileMerge: require('enb/techs/file-merge'), | |
| // optimization | |
| borschik: require('enb-borschik/techs/borschik'), | |
| // css | |
| postcss: require('enb-postcss/techs/enb-postcss'), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var vow = require('vow'), | |
| enb = require('enb'), | |
| buildFlow = enb.buildFlow || require('enb/lib/build-flow'), | |
| vfs = enb.asyncFS || require('enb/lib/fs/async-fs'), | |
| utils = require('enb-source-map/lib/utils'), | |
| File = require('enb-source-map/lib/file'); | |
| module.exports = buildFlow.create() | |
| .name('define') | |
| .target('target', '?.js') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/.enb/make.js b/.enb/make.js | |
| index bf95ff2..2d49bfc 100644 | |
| --- a/.enb/make.js | |
| +++ b/.enb/make.js | |
| @@ -5,6 +5,7 @@ var techs = { | |
| // optimization | |
| borschik: require('enb-borschik/techs/borschik'), | |
| + closure: require('enb-closure-compiler-js/techs/closure-compiler'), |
OlderNewer