Skip to content

Instantly share code, notes, and snippets.

@varya
Created February 26, 2014 14:38
Show Gist options
  • Save varya/9230526 to your computer and use it in GitHub Desktop.
Save varya/9230526 to your computer and use it in GitHub Desktop.
› 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