@marp-team/marpit
Advanced tools
Comparing version 0.1.1 to 0.1.2
@@ -5,2 +5,13 @@ # Change Log | ||
## v0.1.2 - 2018-09-20 | ||
### Fixed | ||
- Fix to parse metadata of theme within important comments ([#74](https://github.com/marp-team/marpit/pull/74), [#76](https://github.com/marp-team/marpit/pull/76)) | ||
- Update [documentation of customized theme](https://marpit.marp.app/theme-css?id=customized-theme) to apply changed behavior on v0.1.1 ([#75](https://github.com/marp-team/marpit/pull/75), [#77](https://github.com/marp-team/marpit/pull/77)) | ||
### Changed | ||
- Upgrade devDependencies to latest version ([#78](https://github.com/marp-team/marpit/pull/78)) | ||
## v0.1.1 - 2018-09-18 | ||
@@ -7,0 +18,0 @@ |
@@ -24,3 +24,3 @@ "use strict"; | ||
css.walkComments(comment => { | ||
comment.text.slice(0).replace(/^[*\s]*@([a-z][a-z0-9]*)\s+(.+)$/gim, (matched, metaName, value) => { | ||
comment.text.slice(0).replace(/^[*!\s]*@([a-z][a-z0-9]*)\s+(.+)$/gim, (matched, metaName, value) => { | ||
ret.marpitMeta[metaName] = value; | ||
@@ -27,0 +27,0 @@ }); |
{ | ||
"name": "@marp-team/marpit", | ||
"version": "0.1.1", | ||
"version": "0.1.2", | ||
"description": "The skinny framework for creating slide deck from Markdown", | ||
@@ -55,6 +55,6 @@ "license": "MIT", | ||
"devDependencies": { | ||
"@babel/cli": "^7.0.0", | ||
"@babel/core": "^7.0.1", | ||
"@babel/cli": "^7.1.0", | ||
"@babel/core": "^7.1.0", | ||
"@babel/plugin-proposal-object-rest-spread": "^7.0.0", | ||
"@babel/preset-env": "^7.0.0", | ||
"@babel/preset-env": "^7.1.0", | ||
"babel-core": "^7.0.0-bridge.0", | ||
@@ -67,3 +67,3 @@ "babel-jest": "^23.6.0", | ||
"docsify-cli": "^4.2.1", | ||
"eslint": "^5.5.0", | ||
"eslint": "^5.6.0", | ||
"eslint-config-airbnb-base": "13.1.0", | ||
@@ -78,3 +78,3 @@ "eslint-config-prettier": "^3.0.1", | ||
"npm-run-all": "^4.1.3", | ||
"prettier": "^1.14.2", | ||
"prettier": "^1.14.3", | ||
"rimraf": "^2.6.2" | ||
@@ -81,0 +81,0 @@ }, |
109642