Skip to content

Instantly share code, notes, and snippets.

@kevinrobinson
Created November 20, 2015 23:46
Show Gist options
  • Select an option

  • Save kevinrobinson/8a2e8fb7b72b0b1084ca to your computer and use it in GitHub Desktop.

Select an option

Save kevinrobinson/8a2e8fb7b72b0b1084ca to your computer and use it in GitHub Desktop.
// 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