From fbf5f9c48c2bbbb2c991b05d9fdcb2b11d0374b9 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Tue, 5 May 2015 17:41:34 -0700 Subject: [PATCH] Fix stylesheet portion of bower.json to comply w/ new `main` spec Per https://github.com/bower/bower.json-spec/commit/0b34d2bb0bdd4fa31fa9728f787f49e170e41f99 > * Use source files with module exports and imports over pre-built distribution files. (See also the example given in the spec; the CSS files aren't included, but the main SCSS file is.) --- bower.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bower.json b/bower.json index 40d767648..888866456 100644 --- a/bower.json +++ b/bower.json @@ -2,8 +2,7 @@ "name": "foundation", "version": "{{VERSION}}", "main": [ - "css/foundation.css", - "css/foundation.css.map", + "scss/foundation.scss", "js/foundation.js" ], "ignore": [ -- 2.47.2