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

postcss-cli

Package Overview
Dependencies
Maintainers
4
Versions
57
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss-cli - npm Package Compare versions

Comparing version 6.1.3 to 7.0.0

6

CHANGELOG.md

@@ -0,1 +1,7 @@

# 7.0.0 / 2020-01-07
- **BREAKING:** Drop support for Node 6 & 8
- Update `globby`, which may be a breaking change for a small number of users using certain glob patterns, see https://github.com/mrmlnc/fast-glob#pattern-syntax for details ([#303](https://github.com/postcss/postcss-cli/pull/303))
- Update dependencies
# 6.1.3 / 2019-07-08

@@ -2,0 +8,0 @@

10

index.js

@@ -190,3 +190,3 @@ 'use strict'

config = config || cliConfig
const options = Object.assign({}, config.options)
const options = { ...config.options }

@@ -239,9 +239,3 @@ if (file === 'stdin' && output) file = output

if (messages.length) {
console.warn(
reporter(
Object.assign({}, result, {
messages
})
)
)
console.warn(reporter({ ...result, messages }))
}

@@ -248,0 +242,0 @@

33

package.json
{
"name": "postcss-cli",
"version": "6.1.3",
"version": "7.0.0",
"description": "CLI for PostCSS",
"main": "index.js",
"engines": {
"node": ">=6"
"node": ">=10"
},

@@ -21,8 +21,8 @@ "bin": {

"dependencies": {
"chalk": "^2.1.0",
"chokidar": "^2.0.0",
"chalk": "^3.0.0",
"chokidar": "^3.3.0",
"dependency-graph": "^0.8.0",
"fs-extra": "^7.0.0",
"get-stdin": "^6.0.0",
"globby": "^9.0.0",
"fs-extra": "^8.1.0",
"get-stdin": "^7.0.0",
"globby": "^10.0.1",
"postcss": "^7.0.0",

@@ -33,12 +33,12 @@ "postcss-load-config": "^2.0.0",

"read-cache": "^1.0.0",
"yargs": "^12.0.1"
"yargs": "^15.0.2"
},
"devDependencies": {
"ava": "^1.0.1",
"ava": "^2.4.0",
"coveralls": "^3.0.0",
"eslint": "^5.0.0",
"eslint-config-problems": "2.0.0",
"nyc": "^14.0.0",
"eslint": "^6.8.0",
"eslint-config-problems": "3.1.0",
"nyc": "^15.0.0",
"postcss-import": "^12.0.0",
"prettier": "~1.18.0",
"prettier": "~1.19.1",
"sugarss": "^2.0.0",

@@ -75,3 +75,8 @@ "uuid": "^3.0.1"

"homepage": "https://github.com/postcss/postcss-cli#readme",
"license": "MIT"
"license": "MIT",
"ava": {
"helpers": [
"test/helpers/*"
]
}
}
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