Socket
Socket
Sign inDemoInstall

unified

Package Overview
Dependencies
Maintainers
1
Versions
57
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

unified - npm Package Compare versions

Comparing version 2.1.0 to 2.1.1

5

history.md

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

2.1.1 / 2015-10-14
==================
* Fix component and duo support ([3eacf6a](https://github.com/wooorm/unified/commit/3eacf6a))
2.1.0 / 2015-10-10

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

8

index.js

@@ -19,7 +19,13 @@ /**

var ware = require('ware');
var extend = require('extend');
var AttachWare = require('attach-ware')(ware);
var VFile = require('vfile');
var unherit = require('unherit');
var extend;
try {
extend = require('node-extend');
} catch (e) {
extend = require('extend');
}
/*

@@ -26,0 +32,0 @@ * Processing pipeline.

4

package.json
{
"name": "unified",
"version": "2.1.0",
"version": "2.1.1",
"description": "Text processing framework: Parse / Transform / Compile",

@@ -59,3 +59,3 @@ "license": "MIT",

"build-md": "mdast . --quiet",
"build-bundle": "browserify index.js -s AttachWare > unified.js",
"build-bundle": "browserify index.js -s AttachWare -u node-extend > unified.js",
"postbuild-bundle": "esmangle unified.js > unified.min.js",

@@ -62,0 +62,0 @@ "build": "npm run build-md && npm run build-bundle"

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