Skip to content

Commit b135954

Browse files
authored
Merge pull request #210 from marp-team/upgrade-dependencies
Upgrade dependent packages to the latest version
2 parents 43924f0 + 2e2eb8f commit b135954

File tree

4 files changed

+706
-636
lines changed

4 files changed

+706
-636
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## [Unreleased]
44

5+
### Changed
6+
7+
- Upgrade Marpit to [v1.6.4](https://github.com/marp-team/marpit/releases/v1.6.4) ([#210](https://github.com/marp-team/marp-core/pull/210))
8+
- Upgrade dependent packages to the latest version ([#210](https://github.com/marp-team/marp-core/pull/210))
9+
510
## v1.4.0 - 2020-12-05
611

712
### Breaking

package.json

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -66,54 +66,54 @@
6666
},
6767
"devDependencies": {
6868
"@marp-team/marp-cli": "0.23.0",
69-
"@rollup/plugin-alias": "^3.1.1",
70-
"@rollup/plugin-commonjs": "^17.0.0",
69+
"@rollup/plugin-alias": "^3.1.2",
70+
"@rollup/plugin-commonjs": "^17.1.0",
7171
"@rollup/plugin-json": "^4.1.0",
72-
"@rollup/plugin-node-resolve": "^11.0.0",
73-
"@rollup/plugin-typescript": "^8.0.0",
74-
"@types/cheerio": "^0.22.22",
75-
"@types/jest": "^26.0.16",
76-
"@typescript-eslint/eslint-plugin": "^4.9.0",
77-
"@typescript-eslint/parser": "^4.9.0",
72+
"@rollup/plugin-node-resolve": "^11.1.1",
73+
"@rollup/plugin-typescript": "^8.1.1",
74+
"@types/cheerio": "^0.22.23",
75+
"@types/jest": "^26.0.20",
76+
"@typescript-eslint/eslint-plugin": "^4.14.2",
77+
"@typescript-eslint/parser": "^4.14.2",
7878
"autoprefixer": "^9.8.6",
79-
"cheerio": "^1.0.0-rc.3",
79+
"cheerio": "^1.0.0-rc.5",
8080
"codecov": "^3.8.1",
81-
"eslint": "^7.15.0",
82-
"eslint-config-prettier": "^6.15.0",
81+
"eslint": "^7.19.0",
82+
"eslint-config-prettier": "^7.2.0",
8383
"eslint-plugin-import": "^2.22.1",
8484
"eslint-plugin-jest": "^24.1.3",
8585
"github-markdown-css": "^4.0.0",
8686
"jest": "^26.6.3",
8787
"jest-environment-jsdom-fifteen": "^1.0.2",
8888
"jest-junit": "^12.0.0",
8989
"jest-plugin-context": "^2.9.0",
90-
"markdown-it": "^12.0.2",
90+
"markdown-it": "^12.0.4",
9191
"mkdirp": "^1.0.4",
9292
"node-sass-package-importer": "^5.3.2",
93-
"nodemon": "^2.0.6",
93+
"nodemon": "^2.0.7",
9494
"npm-run-all": "^4.1.5",
9595
"postcss-url": "^8.0.0",
9696
"prettier": "^2.2.1",
9797
"rimraf": "^3.0.2",
98-
"rollup": "^2.34.1",
98+
"rollup": "^2.38.5",
9999
"rollup-plugin-postcss": "^3.1.8",
100100
"rollup-plugin-string": "^3.0.0",
101101
"rollup-plugin-terser": "^7.0.2",
102-
"sass": "^1.30.0",
102+
"sass": "^1.32.6",
103103
"self-closing-tags": "^1.0.1",
104-
"stylelint": "^13.8.0",
104+
"stylelint": "^13.9.0",
105105
"stylelint-config-prettier": "^8.0.2",
106106
"stylelint-config-standard": "^20.0.0",
107107
"stylelint-scss": "^3.18.0",
108-
"ts-jest": "26.4.4",
109-
"tslib": "^2.0.3",
110-
"typescript": "^4.1.2"
108+
"ts-jest": "26.5.0",
109+
"tslib": "^2.1.0",
110+
"typescript": "^4.1.3"
111111
},
112112
"dependencies": {
113-
"@marp-team/marpit": "^1.6.3",
113+
"@marp-team/marpit": "^1.6.4",
114114
"@marp-team/marpit-svg-polyfill": "^1.7.0",
115-
"emoji-regex": "^9.2.0",
116-
"highlight.js": "^10.4.1",
115+
"emoji-regex": "^9.2.1",
116+
"highlight.js": "^10.5.0",
117117
"katex": "^0.12.0",
118118
"markdown-it-emoji": "^2.0.0",
119119
"mathjax-full": "^3.1.2",

test/marp.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,12 @@ describe('Marp', () => {
6262
const { render } = marp({ emoji })
6363

6464
const $heart = cheerio.load(render('# :heart:').html)
65-
expect($heart('h1').html()).toBe('❤️')
65+
expect($heart('h1').html()).toBe('\u2764\ufe0f')
6666

6767
const $smiling = cheerio.load(
6868
render('# :smiling_face_with_three_hearts:').html
6969
)
70-
expect($smiling('h1').html()).toBe('🥰')
70+
expect($smiling('h1').html()).toBe('\u{1f970}')
7171
})
7272
})
7373

0 commit comments

Comments
 (0)