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

postcss-log-warnings

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss-log-warnings - npm Package Compare versions

Comparing version 0.1.2 to 0.1.3

3

CHANGELOG.md
# Changelog
## v0.1.3
- Add message when exiting process with code 1 to clarify reason.
## v0.1.2

@@ -4,0 +7,0 @@ - Only log if there is something to log (don't log undefined).

'use strict';
var postcss = require('postcss');
var chalk = require('chalk');
var processResult = require('./lib/processResult');

@@ -22,3 +23,6 @@

process.on('exit', function() {
if (exitCode) process.exit(exitCode);
if (!exitCode) return;
console.log(chalk.red.bold('\n** PostCSS warnings were logged **'));
process.exit(exitCode);
});

4

package.json
{
"name": "postcss-log-warnings",
"version": "0.1.2",
"version": "0.1.3",
"description": "Log PostCSS warnings in the console",

@@ -26,3 +26,3 @@ "main": "index.js",

"devDependencies": {
"eslint": "0.18.0",
"eslint": "0.20.0",
"tape": "4.0.0"

@@ -29,0 +29,0 @@ },

Sorry, the diff of this file is not supported yet

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