This repository has been archived by the owner on Dec 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
Remove breakpoint-sass dependency #129
Labels
Comments
rbarilani
added a commit
that referenced
this issue
Feb 19, 2016
…ld, removing vendors file #129 BREAKING CHANGE: breakpoint-sass dep was removed, you hae to include that by your own, bower specific dristribution doesn't exist anymore replace this: ```scss @import "bower_components/dress-code/sass/dress-code" @include dc-everything ``` with: ```scss @import "bower_components/compass-breakpoint/stylesheets/breakpoint" // import required breakpoint sass module/plugin @import "bower_components/dress-code/dist/sass/dress-code" @include dc-everything; ```
rbarilani
added a commit
that referenced
this issue
Feb 19, 2016
Closed
rbarilani
added a commit
that referenced
this issue
Mar 14, 2016
* develop: fix(dialog): make dialog scrollable when hovering outside of it #142 chore(node4): test build on node 4.0.0 #129 fix chore(breakpoint-sass): removes breakpoint-sass dep, remove bower build, removing vendors file #129 fix: change dc-dialog overlay mixin name to be consistent with the global selector one #130 feature(icon button): Order icon button content by BEM
gabrielhl
pushed a commit
that referenced
this issue
Mar 23, 2016
…ld, removing vendors file #129 BREAKING CHANGE: breakpoint-sass dep was removed, you hae to include that by your own, bower specific dristribution doesn't exist anymore replace this: ```scss @import "bower_components/dress-code/sass/dress-code" @include dc-everything ``` with: ```scss @import "bower_components/compass-breakpoint/stylesheets/breakpoint" // import required breakpoint sass module/plugin @import "bower_components/dress-code/dist/sass/dress-code" @include dc-everything; ```
gabrielhl
pushed a commit
that referenced
this issue
Mar 23, 2016
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Removing the breakpoint-sass will simplify the build system and the package manager support.
Right now we have to maintain a "freaky" build process to allow bower and npm to work.
The freaky part is required just because we include the breakpoint-sass dep.
My proposal is to remove the hardcoded dependency and explain in the HOW TO SASS section that the breakpoint-sass library must be included/loaded dress-code. (with compass for example is just a plugin).
SASS users can do something like...
Just by adding a line for advanced users, we can remove the necessity to have a separate bower repo, we can remove freaky building tasks, we can support npm 3 and node 4.
The text was updated successfully, but these errors were encountered: