@emdaer/plugin-import
Advanced tools
+13
-0
@@ -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; |
+3
-3
| { | ||
| "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" | ||
| } | ||
| } |
+1
-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> |
+1
-1
@@ -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; |
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
21044
2.36%Updated