diff --git a/CHANGELOG.md b/CHANGELOG.md index 19938516..89c03cdf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,12 @@ # Change Log -> ℹī¸ **[v2.x](#v200---2022-06-03) is currently available as pre-released version. Try it and ready for [the next new core](https://marp.app/blog/202205-ecosystem-update)!** - ## [Unreleased] +> 🆙 **This is a first stable release of v2.x!** You can see differences from v1 at [#392](https://github.com/marp-team/marp-vscode/pull/392). + ### Breaking +- Marp for VS Code v2 has made as stable release ([#392](https://github.com/marp-team/marp-vscode/pull/392)) - VS Code 1.72 and later required ([#390](https://github.com/marp-team/marp-vscode/pull/390)) ### Changed diff --git a/package.json b/package.json index 4a5379ae..6f5bf311 100644 --- a/package.json +++ b/package.json @@ -229,8 +229,7 @@ }, "private": true, "vsce": { - "yarn": false, - "preRelease": true + "yarn": false }, "prettier": { "semi": false, diff --git a/webpack.base.config.js b/webpack.base.config.js index 859ab3d0..10ea5098 100644 --- a/webpack.base.config.js +++ b/webpack.base.config.js @@ -9,6 +9,7 @@ module.exports = ({ outputPath, production, minimizerFormat }) => ({ // Marp Core (CJS) is not compatible with ESM default export // https://github.com/marp-team/marp-core/issues/322 'emoji-regex$': require.resolve('emoji-regex/index.js'), + twemoji$: require.resolve('twemoji/dist/twemoji.npm.js'), }, extensions: ['.ts', '.js'], },