
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
postcss-partial-import
Advanced tools
Partial Import is a PostCSS plugin that inlines standard and Sass-like @import
statements.
/* before file.css */
@import "foo/bar";
/* before foo/_bar.css */
html {
background-color: #fafafa;
}
/* after */
html {
background-color: #fafafa;
}
Follow these steps to use Partial Import.
Add Partial Import to your build tool:
npm install postcss-partial-import --save-dev
require('postcss-partial-import')({ /* options */ }).process(YOUR_CSS);
Add PostCSS to your build tool:
npm install postcss --save-dev
Load Partial Import as a PostCSS plugin:
postcss([
require('postcss-partial-import')({ /* options */ })
]);
Add Gulp PostCSS to your build tool:
npm install gulp-postcss --save-dev
Enable Partial Import within your Gulpfile:
var postcss = require('gulp-postcss');
gulp.task('css', function () {
return gulp.src('./css/src/*.css').pipe(
postcss([
require('postcss-partial-import')({ /* options */ })
])
).pipe(
gulp.dest('./css')
);
});
Add Grunt PostCSS to your build tool:
npm install grunt-postcss --save-dev
Enable Partial Import within your Gruntfile:
grunt.loadNpmTasks('grunt-postcss');
grunt.initConfig({
postcss: {
options: {
processors: [
require('postcss-partial-import')({ /* options */ })
]
},
dist: {
src: 'css/*.css'
}
}
});
encoding
Type: String
Default: utf8
The character encoding of files being imported.
extension
Type: String
Default: css
The file extension appended to partials being imported.
prefix
Type: String
Default: _
The file extension sometimes prepended to partials being imported.
cachedir
Type: String
Default: null
The directory to store cached includes in. Can reduce compilation time when there are a lot of @include
s. Setting this property enables the cache.
FAQs
Inline sugary @import statements in CSS
We found that postcss-partial-import 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
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.