forked from foundation/foundation-sites
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[TMP] Fix Sass dependencies import for Bower
⚠️ **This is a temporary solution** Unlike NPM, Bower does not have its own registry and uses the Github repository. Like `js, `sass` and `dist`, all the files required by Bower must be published on Git. Changes: - Pin the Sass dependencies versions and update `yarn.lock` - Move only the require files to `/vendor` - Publish the Sass dependencies in `vendor/` on git.
- Loading branch information
Showing
17 changed files
with
1,000 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,6 @@ | |
.sass-cache/* | ||
.yardoc | ||
_build | ||
_vendor | ||
.customizer | ||
|
||
bower_components | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
@import 'normalize/variables'; | ||
@import 'normalize/vertical-rhythm'; | ||
@import 'normalize/normalize-mixin'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// Import Now | ||
// | ||
// If you import this module directly, it will immediately output all the CSS | ||
// needed to normalize default HTML elements across all browsers. | ||
// | ||
// ``` | ||
// @import "normalize/import-now"; | ||
// ``` | ||
|
||
@import '../normalize'; | ||
@include normalize(); |
Oops, something went wrong.