Socket
Socket
Sign inDemoInstall

remark-lint

Package Overview
Dependencies
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

remark-lint - npm Package Compare versions

Comparing version 3.1.0 to 3.2.0

5

history.md

@@ -5,2 +5,7 @@ <!--remark setext-->

3.2.0 / 2016-04-04
==================
* Add support for global externals in Electron ([`2b31591`](https://github.com/wooorm/remark-lint/commit/2b31591))
3.1.0 / 2016-04-03

@@ -7,0 +12,0 @@ ==================

4

lib/index.js

@@ -39,2 +39,3 @@ /**

var isWindows;
var isElectron;
var isGlobal;

@@ -53,3 +54,4 @@ var globals;

isWindows = global.process.platform === 'win32';
isGlobal = global.process.argv[1].indexOf(npmPrefix) === 0;
isElectron = global.process.versions.electron !== undefined;
isGlobal = isElectron || global.process.argv[1].indexOf(npmPrefix) === 0;

@@ -56,0 +58,0 @@ /* istanbul ignore next */

{
"name": "remark-lint",
"version": "3.1.0",
"version": "3.2.0",
"description": "Lint markdown with remark",

@@ -5,0 +5,0 @@ "license": "MIT",

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