From e50f602488c07ff9e7103f2a185b9c165a2bdd42 Mon Sep 17 00:00:00 2001 From: Wesley Cho Date: Sat, 26 Mar 2016 15:16:27 -0700 Subject: [PATCH] chore: add another exclusion --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index 939559f5e4..2e769b4828 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -232,7 +232,7 @@ module.exports = function(grunt) { name: name, moduleName: enquote(`ui.bootstrap.${name}`), displayName: ucwords(breakup(name, ' ')), - srcFiles: grunt.file.expand([`src/${name}/*.js`, `!src/${name}/index.js`]), + srcFiles: grunt.file.expand([`src/${name}/*.js`, `!src/${name}/index.js`, `!src/${name}/index-nocss.js`]), cssFiles: grunt.file.expand(`src/${name}/*.css`), tplFiles: grunt.file.expand(`template/${name}/*.html`), tpljsFiles: grunt.file.expand(`template/${name}/*.html.js`),