Skip to content
This repository has been archived by the owner on May 29, 2019. It is now read-only.

Commit

Permalink
chore: fix improper build
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleycho committed Mar 26, 2016
1 parent de504fb commit f573027
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ module.exports = function(grunt) {

function dependenciesForModule(name) {
var deps = [];
grunt.file.expand([`src/${name}/*.js`, `!src/${name}/index.js`])
grunt.file.expand([`src/${name}/*.js`, `!src/${name}/index.js`, `!src/${name}/index-nocss.js`])
.map(grunt.file.read)
.forEach(function(contents) {
//Strategy: find where module is declared,
Expand Down

0 comments on commit f573027

Please sign in to comment.