Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

postcss-color-rebeccapurple

Package Overview
Dependencies
Maintainers
3
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss-color-rebeccapurple - npm Package Compare versions

Comparing version 4.0.1 to 5.0.0

5

CHANGELOG.md

@@ -0,1 +1,6 @@

# 5.0.0 - 2020-01-29
- Updated: Support for Node v10+
- Updated: PostCSS Values Parser v3+
# 4.0.1 - 2018-09-18

@@ -2,0 +7,0 @@

4

index.js

@@ -14,6 +14,6 @@ /**

style.walkDecls((decl) => {
const value = decl.value;
const value = decl.value
if (value && regexp.test(value)) {
const valueAST = valueParser(value).parse()
const valueAST = valueParser.parse(value)

@@ -20,0 +20,0 @@ valueAST.walk(node => {

{
"name": "postcss-color-rebeccapurple",
"version": "4.0.1",
"version": "5.0.0",
"description": "PostCSS plugin to transform W3C CSS rebeccapurple color to more compatible CSS (rgb())",

@@ -24,18 +24,15 @@ "keywords": [

"engines": {
"node": ">=6.0.0"
"node": ">=10.0.0"
},
"dependencies": {
"postcss": "^7.0.2",
"postcss-values-parser": "^2.0.0"
"postcss": "^7.0.26",
"postcss-values-parser": "^3.0.5"
},
"devDependencies": {
"jscs": "^3.0.7",
"jshint": "^2.9.6",
"npmpub": "^4.1.0",
"eslint": "^6.8.0",
"npmpub": "^5.0.0",
"tape": "^4.9.1"
},
"scripts": {
"lint": "npm run jscs && npm run jshint",
"jscs": "jscs index.js test/index.js",
"jshint": "jshint . --exclude-path .gitignore",
"lint": "eslint index.js ./test/*.js",
"test": "npm run lint && tape test",

@@ -42,0 +39,0 @@ "release": "npmpub"

@@ -5,2 +5,4 @@ # postcss-color-rebeccapurple [![CSS Standard Status](https://cssdb.org/badge/rebeccapurple-color.svg)](https://cssdb.org/#rebeccapurple-color) [![Build Status](https://api.travis-ci.org/postcss/postcss-color-rebeccapurple.svg)](https://travis-ci.org/postcss/postcss-color-rebeccapurple)

[!['Can I use' table](https://caniuse.bitsofco.de/image/css-rebeccapurple.png)](https://caniuse.com/#feat=css-rebeccapurple)
## Why this plugin ?

@@ -7,0 +9,0 @@

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