node-normalize-scss

WebJar for node-normalize-scss

License

License

MIT
Categories

Categories

ORM Data
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

node-normalize-scss
Last Version

Last Version

1.3.2
Release Date

Release Date

Type

Type

jar
Description

Description

node-normalize-scss
WebJar for node-normalize-scss
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/ranjandatta/node-normalize-scss

Download node-normalize-scss

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/node-normalize-scss/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>node-normalize-scss</artifactId>
    <version>1.3.2</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/node-normalize-scss/
implementation 'org.webjars.npm:node-normalize-scss:1.3.2'
// https://jarcasting.com/artifacts/org.webjars.npm/node-normalize-scss/
implementation ("org.webjars.npm:node-normalize-scss:1.3.2")
'org.webjars.npm:node-normalize-scss:jar:1.3.2'
<dependency org="org.webjars.npm" name="node-normalize-scss" rev="1.3.2">
  <artifact name="node-normalize-scss" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='node-normalize-scss', version='1.3.2')
)
libraryDependencies += "org.webjars.npm" % "node-normalize-scss" % "1.3.2"
[org.webjars.npm/node-normalize-scss "1.3.2"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

node-normalize-scss

This repo will no longer be maintained. Please see scss-resets. Along with normalize it also has other css resets all in one package.

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

Based on normalize.css version 8.0.1

Install

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

Stylesheet usage

Use either method above or for your chosen task runner (gulp.js, Grunt, etc.), then in your stylesheet:

@import "normalize";

gulp.js Usage

Using the gulp-sass plugin.

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

gulp.task('sass', function () {
  gulp.src('path/to/input.scss')
    .pipe(sass({
      // includePaths: require('node-normalize-scss').with('other/path', 'another/path')
      // - or -
      includePaths: require('node-normalize-scss').includePaths
    }))
    .pipe(gulp.dest('path/to/output.css'));
});

Grunt Usage

Using grunt-sass

The grunt-sass task uses node-sass (LibSass) underneath, and is the recommended way to use Grunt with node-neat.

Example config:

grunt.initConfig({
  sass: {
    dist: {
      options: {
        // includePaths: require('node-normalize-scss').with('other/path', 'another/path')
        // - or -
        includePaths: require('node-normalize-scss').includePaths
      },
      files: {
        'path/to/output.css': 'path/to/input.scss'
      }
    }
  }
});

Versions

Version
1.3.2