Gathering detailed insights and metrics for fis-msprd-autoprefixer-loader_3_2_0
Gathering detailed insights and metrics for fis-msprd-autoprefixer-loader_3_2_0
npm install fis-msprd-autoprefixer-loader_3_2_0
Typescript
Module System
Node Version
NPM Version
62.4
Supply Chain
96.2
Quality
74.1
Maintenance
25
Vulnerability
100
License
JavaScript (100%)
Total Downloads
826
Last Day
1
Last Week
2
Last Month
6
Last Year
56
217 Stars
76 Commits
25 Forks
8 Watching
4 Branches
11 Contributors
Minified
Minified + Gzipped
Latest Version
3.2.0
Package Id
fis-msprd-autoprefixer-loader_3_2_0@3.2.0
Size
2.90 kB
NPM Version
4.1.1
Node Version
6.9.1
Publised On
11 Jan 2017
Cumulative downloads
Total Downloads
Last day
0%
1
Compared to previous day
Last week
100%
2
Compared to previous week
Last month
200%
6
Compared to previous month
Last year
-23.3%
56
Compared to previous year
4
8
An autoprefixer loader for webpack.
:warning: This module is deprecated. Autoprefixer official page recommends using
postcss-loader
instead.
1var css = require('!raw!autoprefixer!./file.css'); // Just the CSS 2var css = require('!css!autoprefixer!./file.css'); // CSS with processed url(...)s
See css-loader to see the effect of processed url(...)
s.
Or within the webpack config:
1module: { 2 loaders: [{ 3 test: /\.css$/, 4 loader: 'css-loader!autoprefixer-loader?browsers=last 2 versions' 5 }] 6}
Then you can: var css = require('./file.css');
.
Use in tandem with the style-loader to add the css rules to your document
:
1module: { 2 loaders: [{ 3 test: /\.css/, 4 loader: 'style-loader!css-loader!autoprefixer-loader' 5 }] 6}
and then require('./file.css');
will compile and add the CSS to your page.
browsers
Specify a single browser to support. Read more
1loaders: [{ 2 loader: 'css-loader!autoprefixer-loader?browsers=last 2 version', 3 ... 4}]
For a list of browsers use JSON syntax.
1loaders: [{ 2 loader: 'css-loader!autoprefixer-loader?{browsers:["last 2 version", "Firefox 15"]}', 3 ... 4}]
cascade
Default: true
When disabled, autoprefixer creates no visual cascade for the generated prefixes. Read more
1loaders: [{ 2 loader: 'css-loader!autoprefixer-loader?cascade=false', 3 ... 4}]
safe
Default: false
When enabled, autoprefixer will attempt to parse invalid CSS. Read more
1loaders: [{ 2 loader: 'css-loader!autoprefixer-loader?safe=true', 3 ... 4}]
add
Default: true
While disabled, autoprefixer will not add any new prefixes to your code. Read more
1loaders: [{ 2 loader: 'css-loader!autoprefixer-loader?add=false', 3 ... 4}]
remove
Default: true
Whether or not autoprefixer should automatically remove outdated prefixes. Read more
1loaders: [{ 2 loader: 'css-loader!autoprefixer-loader?remove=false', 3 ... 4}]
npm install autoprefixer-loader --save-dev
In lieu of a formal styleguide, take care to maintain the existing coding style.
add
, remove
options, bump autoprefixer-coreLicensed under the MIT license.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
Found 6/30 approved changesets -- score normalized to 2
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-01-27
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More