Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@emdaer/plugin-import

Package Overview
Dependencies
Maintainers
4
Versions
133
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@emdaer/plugin-import - npm Package Compare versions

Comparing version
2.0.0
to
2.0.1
+13
-0
CHANGELOG.md

@@ -6,2 +6,15 @@ # Change Log

<a name="2.0.1"></a>
## [2.0.1](https://github.com/emdaer/emdaer/compare/v2.0.0...v2.0.1) (2018-04-14)
### Bug Fixes
* **core:** override marked to output md. remove minifier ([9fb0c27](https://github.com/emdaer/emdaer/commit/9fb0c27))
* syntax highlighting and a couple other things ([6b2be61](https://github.com/emdaer/emdaer/commit/6b2be61))
<a name="2.0.0"></a>

@@ -8,0 +21,0 @@ # [2.0.0](https://github.com/emdaer/emdaer/compare/v1.8.13...v2.0.0) (2018-02-21)

+1
-1

@@ -19,5 +19,5 @@ /* */

const content = (await fs.readFile(path)).toString();
return runEmdaer ? emdaer(path, content) : content;
return runEmdaer ? emdaer(path, content, { marked: false }) : content;
}
module.exports = importPlugin;
{
"name": "@emdaer/plugin-import",
"description": "An emdaer plugin that imports content from another file",
"version": "2.0.0",
"version": "2.0.1",
"repository": "emdaer/emdaer",

@@ -16,3 +16,3 @@ "homepage": "https://emdaer.me/",

"dependencies": {
"@emdaer/core": "^2.0.0",
"@emdaer/core": "^2.0.1",
"fs-extra": "3.0.1"

@@ -24,4 +24,4 @@ },

"devDependencies": {
"@emdaer/plugin-value-from-package": "^2.0.0"
"@emdaer/plugin-value-from-package": "^2.0.1"
}
}

@@ -9,3 +9,3 @@ <!--

<p>An emdaer plugin that imports content from another file</p>
<!-- Generated by documentation.js. Update this documentation by updating the source code. -->
<h2 id="importplugin">importPlugin</h2>

@@ -12,0 +12,0 @@ <p>Import and optionally render files.</p>

@@ -22,5 +22,5 @@ /* @flow */

const content = (await fs.readFile(path)).toString();
return runEmdaer ? emdaer(path, content) : content;
return runEmdaer ? emdaer(path, content, { marked: false }) : content;
}
module.exports = importPlugin;