![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
node-sass-magic-importer
Advanced tools
Custom node-sass importer for selector specific imports, node importing, module importing, globbing support and importing files only once
Custom node-sass importer for selector specific imports, node importing, module importing, globbing support and importing files only once.
npm install node-sass-magic-importer --save-dev
This importer enables several comfort functions for importing SASS files more easily.
node_modules
without specifying the full path.@import: 'scss/**/*.scss'
) to import multiple files at once.By default every file is only imported once even if you @import
the same file multiple times in your code (except if you are using filters).
With selector filtering, it is possible to import only certain CSS selectors form a file. This is especially useful if you want to import only a few CSS classes from a huge library or framework.
// Example:
@import '{ .btn, .btn-alert } from style.scss';
// Result:
.btn { }
.btn-alert { }
// Example:
@import '{ .btn as .button, .btn-alert as .button--alert } from style.scss';
// Result:
.button { }
.button--alert { } // Transformed to match BEM syntax.
// Example:
@import '{ /^\..+-alert/ } from style.scss';
// Result:
.box-alert { }
.btn-alert { }
// Example:
@import '{ /^\.btn(.*)/ as .button$1 } from style.scss';
// Result:
.button { }
.button-alert { }
Bootstrap is a mighty and robust framework but most of the time you use only certain parts of it. There is the possibility to customize Bootstrap to your needs but this can be annoying and you still end up with more code than you need. Also you might want to use just some specific parts of Bootstrap but your project uses the BEM syntax for writing class names.
// This example uses the v4 dev version of the Bootstrap `alert` component:
// https://github.com/twbs/bootstrap/blob/v4-dev/scss/_alert.scss
@import 'bootstrap/scss/variables';
@import 'bootstrap/scss/mixins/border-radius';
@import 'bootstrap/scss/mixins/alert';
@import '{
.alert,
.alert-dismissible as .alert--dismissible,
.close as .alert__close
} from bootstrap/scss/alert';
// Result:
.alert {
padding: 15px;
margin-bottom: 1rem;
border: 1px solid transparent;
border-radius: 0.25rem;
}
.alert--dismissible {
padding-right: 35px;
}
.alert--dismissible .alert__close {
position: relative;
top: -2px;
right: -21px;
color: inherit;
}
Filter certain elements from SCSS code.
// Example:
@import '[variables, mixins] from style.scss';
// style.scss:
$variable1: 'value';
$variable2: 'value';
.selector { }
@mixin mixin() { }
// Result:
$variable1: 'value';
$variable2: 'value';
@mixin mixin() { }
@media
, @supports
, @mixin
,...@function
@mixin
.class-selector
, #id-selector
,...$variable
In modern day web development, modules and packages are everywhere. There is no way around npm if you are a JavaScript developer. More and more CSS and SASS projects move to npm but it can be annoying to find a convenient way of including them into your project. Module importing makes this a little easier.
// Import the file that is specified in the `package.json` file of the module.
// In the case of bootstrap, the following file is loaded:
// https://github.com/twbs/bootstrap/blob/v4-dev/scss/bootstrap.scss
@import '~bootstrap';
// Import only specific files:
@import '~bootstrap/scss/variables';
@import '~bootstrap/scss/mixins/border-radius';
@import '~bootstrap/scss/mixins/alert';
@import '~bootstrap/scss/alert';
The "~" is mandatory and marks the import path as module.
If only the module name is given (e.g. @import '~bootstrap'
) the importer looks in the package.json
file of the module for the following keys: "sass", "scss", "style", "css", "main.sass", "main.scss", "main.style", "main.css" and "main". The first key that is found is used for resolving the path and importing the file into your sass code.
To load only a certain file from a module you can specify the file in the import url (e.g. @import '~bootstrap/scss/_alert.scss'
). The node-sass-magic-importer
also supports partial file name resolving so you can import files by only specifying their base name without prefix and extension (e.g. @import '~bootstrap/scss/alert'
). Sadly bootstrap and most other frameworks do not load their dependencies directly in the concerned files. So you have to load all dependencies of a file manually like in the example above. I recommend you to do better and to import dependencies directly in the files that are using them.
Globbing allows pattern matching operators to be used to match multiple files at once.
// Import all files inside the `scss` directory and subdirectories.
@import: 'scss/**/*.scss';
var sass = require('node-sass');
var magicImporter = require('node-sass-magic-importer');
sass.render({
...
importer: magicImporter()
...
});
const sass = require('node-sass');
const magicImporter = require('node-sass-magic-importer');
const options = {
// Defines the path in which your node_modules directory is found.
cwd: process.cwd(),
// Define the package.json keys and in which order to search for them.
packageKeys: [
'sass',
'scss',
'style',
'css',
'main.sass',
'main.scss',
'main.style',
'main.css',
'main'
],
// You can set the special character for indicating a module resolution.
packagePrefix: '~',
// Disable console warnings.
disableWarnings: false,
// Disable importing files only once.
disableImportOnce: false,
// Add custom node filters.
customFilters: undefined
};
sass.render({
...
importer: magicImporter(options)
...
});
const sass = require('node-sass');
const magicImporter = require('node-sass-magic-importer');
const options = {
customFilters: {
// Add a node filter for a specific min-width media query.
customMediaWidth: [
[
{ property: 'type', value: 'atrule' },
{ property: 'name', value: 'media' },
{ property: 'params', value:'(min-width: 42em)' }
]
],
// Add a node filter for print media queries.
customMediaPrint: [
[
{ property: 'type', value: 'atrule' },
{ property: 'name', value: 'media' },
{ property: 'params', value: 'print' }
]
]
}
};
sass.render({
...
importer: magicImporter(options)
...
});
// Sass file which implements filter importing.
@import '[custom-media-width, custom-media-print] from file/with/at/rules';
// file/with/at/_rules.scss
@media (min-width: 42em) {
.custom-1-mq {
content: 'Custom 1 mq';
}
}
@media (min-width: 43em) {
.custom-2-mq {
content: 'Custom 1 mq';
}
}
@media print {
.custom-print-mq {
content: 'Custom print mq';
}
}
// CSS output – the `min-width: 43em` media query gets not imported.
@media (min-width: 42em) {
.custom-1-mq {
content: 'Custom 1 mq';
}
}
@media print {
.custom-print-mq {
content: 'Custom print mq';
}
}
// webpack.config.js
const magicImporter = require('node-sass-magic-importer');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
module.exports = {
module: {
rules: [
{
test: /\.scss$/,
use: [
{
loader: MiniCssExtractPlugin.loader,
},
{
loader: 'css-loader'
},
{
loader: 'sass-loader',
options: {
sassOptions: {
importer: magicImporter()
}
}
}
]
}
]
},
plugins: [
new MiniCssExtractPlugin({
filename: 'style.css'
})
]
}
const gulp = require('gulp');
const sass = require('gulp-sass');
const magicImporter = require('node-sass-magic-importer');
gulp.task('sass', function () {
return gulp.src('./**/*.scss')
.pipe(sass({ importer: magicImporter() }).on('error', sass.logError))
.pipe(gulp.dest('./css'));
});
node-sass --importer node_modules/node-sass-magic-importer/dist/cli.js -o dist src/index.scss
includePaths
option when initializing the importer. Use the node-sass includePaths option instead.prefix
option was renamed to packagePrefix
.Node filtering and selector filtering goes only one level deep. This means, if you're importing a file with selector or node filtering which is importing other files, those files are not filtered but imported as is. On a technical level, there is no good solution for this problem. One possibility would be to just pass the filters to all imports in the line but this carries the risk of filtering selectors or nodes on which one of the imported files might depend and therefore break the import. I might add this as an optional feature (which can be activated on demand) in the future – let me know if you're interested in multi level filter imports.
Markus Oberlehner
Website: https://markus.oberlehner.net
Twitter: https://twitter.com/MaOberlehner
PayPal.me: https://paypal.me/maoberlehner
Patreon: https://www.patreon.com/maoberlehner
MIT
FAQs
Custom node-sass importer for selector specific imports, node importing, module importing, globbing support and importing files only once
The npm package node-sass-magic-importer receives a total of 76,157 weekly downloads. As such, node-sass-magic-importer popularity was classified as popular.
We found that node-sass-magic-importer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.