Created
November 20, 2015 23:46
-
-
Save kevinrobinson/8a2e8fb7b72b0b1084ca to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| // Before, with Sprockets: | |
| //= require style | |
| //= require tablesort | |
| //= require tooltipster | |
| //= require jquery-ui | |
| // ... | |
| @import 'variables'; | |
| @import 'overall'; | |
| @import 'type'; | |
| // ... | |
| // After, with Webpack: | |
| @import 'src/variables'; | |
| @import 'src/overall'; | |
| @import 'src/type'; | |
| @import 'vendor/jquery-ui.min'; | |
| @import 'vendor/tooltipster'; | |
| @import 'vendor/tablesort'; | |
| // ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment