Skip to content

Commit

Permalink
Rename some-modules to some.modules
Browse files Browse the repository at this point in the history
This change demonstrates the bug described in #167
  • Loading branch information
jhnns committed Oct 25, 2015
1 parent 119aeb4 commit b06b6be
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion test/sass/import-other-style.sass
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
/* ...but it is allowed */
@import ../scss/another/module.scss
/* However, if it is omitted, .scss always takes precedence */
@import ~test-module/some-module
@import ~test-module/some.module
@import ~test-module/underscore
6 changes: 4 additions & 2 deletions test/sass/imports.sass
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@
@import another/module
/* @import another/underscore */
@import another/underscore
/* @import ~test-module/some-module */
@import ~test-module/some-module
// Import a module with a dot in its name
// @see https://github.com/jtangelder/sass-loader/issues/167
/* @import ~test-module/some.module */
@import ~test-module/some.module
/* @import ~test-module/underscore */
@import ~test-module/underscore
@import url(http://example.com/something/from/the/interwebs)
2 changes: 1 addition & 1 deletion test/scss/import-other-style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
/* ...but it is allowed */
@import "../sass/another/module.sass";
/* However, if it is omitted, .scss always takes precedence */
@import "~test-module/some-module";
@import "~test-module/some.module";
@import "~test-module/underscore";
6 changes: 4 additions & 2 deletions test/scss/imports.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@
@import "another/module";
/* @import "another/underscore"; */
@import "another/underscore";
/* @import "~test-module/some-module"; */
@import "~test-module/some-module";
// Import a module with a dot in its name
// @see https://github.com/jtangelder/sass-loader/issues/167
/* @import "~test-module/some.module"; */
@import "~test-module/some.module";
/* @import "~test-module/underscore"; */
@import "~test-module/underscore";
@import url(http://example.com/something/from/the/interwebs);

0 comments on commit b06b6be

Please sign in to comment.