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

postcss-reporter

Package Overview
Dependencies
Maintainers
2
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss-reporter - npm Package Compare versions

Comparing version 6.0.0 to 6.0.1

4

CHANGELOG.md
# Changelog
## 6.0.1
- Fix support for messages without text (by @nodaguti).
## 6.0.0

@@ -4,0 +8,0 @@

4

lib/formatter.js

@@ -13,3 +13,5 @@ var chalk = require('chalk');

return function(input) {
var messages = input.messages;
var messages = input.messages.filter(function(message) {
return typeof message.text === 'string';
});
var source = input.source;

@@ -16,0 +18,0 @@

{
"name": "postcss-reporter",
"version": "6.0.0",
"version": "6.0.1",
"description": "Log PostCSS messages in the console",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "npm run lint && tape test",
"visual": "node test/visual.js"
},
"files": [

@@ -15,6 +10,3 @@ "index.js",

],
"repository": {
"type": "git",
"url": "https://github.com/postcss/postcss-reporter.git"
},
"repository": "postcss/postcss-reporter",
"author": {

@@ -26,19 +18,7 @@ "name": "David Clark",

"license": "MIT",
"bugs": {
"url": "https://github.com/postcss/postcss-reporter/issues"
},
"homepage": "https://github.com/postcss/postcss-reporter",
"devDependencies": {
"eslint": "1.3.1",
"less": "2.7.1",
"source-map": "0.5.6",
"strip-color": "^0.1.0",
"stylelint": "6.8.0",
"tape": "^4.7.0"
},
"dependencies": {
"chalk": "^2.0.1",
"lodash": "^4.17.4",
"log-symbols": "^2.0.0",
"postcss": "^7.0.2"
"chalk": "^2.4.1",
"lodash": "^4.17.11",
"log-symbols": "^2.2.0",
"postcss": "^7.0.7"
},

@@ -45,0 +25,0 @@ "engines": {

@@ -7,2 +7,8 @@ # postcss-reporter

---
**SEEKING A NEW MAINTAINER!** Interested in contributing to the ecosystem of PostCSS and Stylelint? Please open an issue if you'd like to take over maintenance of this package.
---
## Purpose

@@ -9,0 +15,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