Created
February 26, 2014 14:38
-
-
Save varya/9230526 to your computer and use it in GitHub Desktop.
This file contains 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
› git diff | |
diff --git a/.bem/levels/bundles.js b/.bem/levels/bundles.js | |
index a9b7186..7ab396d 100644 | |
--- a/.bem/levels/bundles.js | |
+++ b/.bem/levels/bundles.js | |
@@ -44,7 +44,7 @@ exports.getConfig = function() { | |
] | |
.map(function(path) { return PATH.resolve(environ.LIB_ROOT, path); }) | |
.concat([ | |
- 'app.common.blocks', 'app.desktop.blocks', 'app.touch.blocks' | |
+ 'blocks' | |
] | |
.map(function(path) { return PATH.resolve(environ.PRJ_ROOT, path); }))) | |
}); | |
diff --git a/Gruntfile.js b/Gruntfile.js | |
index 28b0fd3..df41ec1 100644 | |
--- a/Gruntfile.js | |
+++ b/Gruntfile.js | |
@@ -18,8 +18,8 @@ module.exports = function (grunt) { | |
// Paths for watch | |
watch_paths = function() { | |
return build_techs.map(function(tech) { | |
- return "*.blocks/**/{,*/}*." + tech; | |
- }).concat("*.bundles/**/*.bemjson.js"); | |
+ return "blocks/**/{,*/}*." + tech; | |
+ }).concat("bundles/**/*.bemjson.js"); | |
}; | |
// Tasks configuration | |
diff --git a/project.json b/project.json | |
index c4eb2e1..d5538e3 100644 | |
--- a/project.json | |
+++ b/project.json | |
@@ -3,12 +3,10 @@ | |
"version" : "0.0.1", | |
"cwd" : ".", | |
"projectLevels" : [ | |
- "app.common.blocks", | |
- "app.desktop.blocks", | |
- "app.touch.blocks" | |
+ "blocks" | |
], | |
"projectBundles" : [ | |
- "app.desktop.bundles" | |
+ "bundles" | |
], | |
"assets" : [ | |
"app.assets" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment