From 141c4f48bfd02e6b59fb8039fa3793f8ec23474f Mon Sep 17 00:00:00 2001 From: Matt Colyer Date: Fri, 4 Oct 2013 13:15:09 -0700 Subject: [PATCH] Move menu building to the proper place --- Gruntfile.coffee | 1 + tasks/build-task.coffee | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.coffee b/Gruntfile.coffee index f0acb96b8..b322b0e06 100644 --- a/Gruntfile.coffee +++ b/Gruntfile.coffee @@ -54,6 +54,7 @@ module.exports = (grunt) -> glob_to_multiple: expand: true src: [ + 'menus/*.cson' 'keymaps/*.cson' 'static/**/*.cson' ] diff --git a/tasks/build-task.coffee b/tasks/build-task.coffee index 04567c3dd..8c62b9f25 100644 --- a/tasks/build-task.coffee +++ b/tasks/build-task.coffee @@ -50,7 +50,6 @@ module.exports = (grunt) -> for directory in packageDirectories cp directory, path.join(appDir, directory), filter: /.+\.(cson|coffee)$/ - cp 'menus', path.join(appDir, 'menus') cp 'spec', path.join(appDir, 'spec') cp 'src', path.join(appDir, 'src'), filter: /.+\.(cson|coffee)$/ cp 'static', path.join(appDir, 'static')