Socket
Socket
Sign inDemoInstall

node-normalize-scss

Package Overview
Dependencies
Maintainers
2
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-normalize-scss

Normalize.css as an npm packaged, libsass module with no changes


Version published
Maintainers
2
Created
Source

node-normalize-scss

This is simply a renamed normalize.css 8.0.1 file, suitable for importing with npm and libsass directly. No changes have been made to the actual file.

Install

npm install node-normalize-scss --save-dev

OR

yarn add node-normalize-scss --dev

Using with gulp-sass

var gulp = require("gulp");
var sass = require("gulp-sass");

gulp.task("sass", function() {
  gulp
    .src("path/to/app.scss")
    .pipe(
      sass({
        includePaths: require("node-normalize-scss").includePaths
      })
    )
    .pipe(gulp.dest("path/to/output.css"));
});

Using with webpack

module.exports = {
  module: {
    rules: [
      {
        use: [
          {
            loader: "sass-loader",
            options: {
              includePaths: require("node-normalize-scss").includePaths
            }
          }
        ]
      }
    ]
  }
};

Using in scss

After creating your gulp task, you can import any of the resets like so:

@import 'normalize';

FAQs

Package last updated on 01 Jul 2020

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc