Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

fix: importing file directly from scoped npm package #450

Merged
merged 2 commits into from
May 10, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 12 additions & 4 deletions lib/importsToResolve.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,21 @@ function importsToResolve(request) {
const basename = path.basename(request);
const dirname = path.dirname(request);
const startsWithUnderscore = basename.charAt(0) === "_";
// a module import is an identifier like 'bootstrap-sass'
// Firstly check whether we importing scoped npm package (i.e. "@org/pkg")
// We also need to check for dirname since it might also be a deep import like 'bootstrap-sass/something'
const isModuleImport = dirname.charAt(0) === "@" && dirname.length > 1 ? true : request.charAt(0) !== "." && dirname === ".";
const hasCssExt = ext === ".css";
const hasSassExt = ext === ".scss" || ext === ".sass";

// a module import is an identifier like 'bootstrap-sass'
// We also need to check for dirname since it might also be a deep import like 'bootstrap-sass/something'
let isModuleImport = request.charAt(0) !== "." && dirname === ".";

if (dirname.charAt(0) === "@") {
// Check whether it is a deep import from scoped npm package
// (i.e. @pkg/foo/file), if so, process import as file import;
// otherwise, if we import from root npm scoped package (i.e. @pkg/foo)
// process import as a module import.
isModuleImport = !(dirname.indexOf("/") > -1);
}

return (isModuleImport && [request]) || // Do not modify module imports
(hasCssExt && []) || // Do not import css files
(hasSassExt && [request]) || // Do not modify imports with explicit extensions
Expand Down
3 changes: 3 additions & 0 deletions test/node_modules/@org/bar/_foo.scss

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions test/sass/import-from-npm-org-pkg.sass
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
/* @import "~@org/pkg"; */
@import "~@org/pkg";
/* @import ~@org/pkg */
@import ~@org/pkg
/* @import ~@org/bar/foo */
@import ~@org/bar/foo

.foo
background: #000;
2 changes: 2 additions & 0 deletions test/scss/import-from-npm-org-pkg.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
/* @import "~@org/pkg"; */
@import "~@org/pkg";
/* @import "~@org/bar/foo"; */
@import "~@org/bar/foo";

.foo {
background: #000;
Expand Down