@node-novel/md-loader
Advanced tools
Comparing version 1.0.12 to 1.0.14
@@ -6,2 +6,29 @@ # Change Log | ||
## [1.0.14](https://github.com/bluelovers/ws-node-novel/compare/@node-novel/md-loader@1.0.12...@node-novel/md-loader@1.0.14) (2021-07-08) | ||
### 🛠 Build System | ||
* update deps and use tslib ([bc00796](https://github.com/bluelovers/ws-node-novel/commit/bc007968e0dde703a1b4e79d147bd7122fe3468b)) | ||
### 🔖 Miscellaneous | ||
* . ([fd9c06a](https://github.com/bluelovers/ws-node-novel/commit/fd9c06a1e1bc526117eee710e13814cc174c4bf4)) | ||
## [1.0.13](https://github.com/bluelovers/ws-node-novel/compare/@node-novel/md-loader@1.0.12...@node-novel/md-loader@1.0.13) (2021-07-08) | ||
### 🛠 Build System | ||
* update deps and use tslib ([bc00796](https://github.com/bluelovers/ws-node-novel/commit/bc007968e0dde703a1b4e79d147bd7122fe3468b)) | ||
## [1.0.12](https://github.com/bluelovers/ws-node-novel/compare/@node-novel/md-loader@1.0.11...@node-novel/md-loader@1.0.12) (2021-02-12) | ||
@@ -8,0 +35,0 @@ |
@@ -5,8 +5,6 @@ "use strict"; | ||
*/ | ||
var __importDefault = (this && this.__importDefault) || function (mod) { | ||
return (mod && mod.__esModule) ? mod : { "default": mod }; | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.fixContent = exports.stringify = exports.parse = void 0; | ||
const gray_matter_1 = __importDefault(require("gray-matter")); | ||
const tslib_1 = require("tslib"); | ||
const gray_matter_1 = (0, tslib_1.__importDefault)(require("gray-matter")); | ||
const node_novel_info_1 = require("node-novel-info"); | ||
@@ -26,3 +24,3 @@ function parse(inputContent, options) { | ||
inputContent = fixContent(inputContent); | ||
let matter = gray_matter_1.default(inputContent, matterOptions); | ||
let matter = (0, gray_matter_1.default)(inputContent, matterOptions); | ||
// @ts-ignore | ||
@@ -29,0 +27,0 @@ let mdconf = parser(inputContent, parseOptions); |
{ | ||
"name": "@node-novel/md-loader", | ||
"version": "1.0.12", | ||
"version": "1.0.14", | ||
"description": "支援 Front Matter 的 node-novel-info / mdconf", | ||
@@ -46,4 +46,4 @@ "keywords": [ | ||
"npm:publish:lerna": "npx lerna publish --yes --cd-version patch", | ||
"preversion": "yarn run test", | ||
"prepublish:lockfile": "npx sync-lockfile .", | ||
"prepublishOnly": "yarn run test", | ||
"postpublish_": "git commit -m \"chore(release): publish\" .", | ||
@@ -54,3 +54,4 @@ "ncu": "npx yarn-tool ncu -u", | ||
"dependencies": { | ||
"gray-matter": "^4.0.2" | ||
"gray-matter": "^4.0.3", | ||
"tslib": "^2.3.0" | ||
}, | ||
@@ -64,3 +65,3 @@ "peerDependencies": { | ||
}, | ||
"gitHead": "2e39f65ce53587abef4d354ddc3d27fbf730b6c5" | ||
"gitHead": "210a5f21a581976090fd5718fbae5304c3fd918e" | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
16687
4
183
+ Addedtslib@^2.3.0
Updatedgray-matter@^4.0.3