Skip to content

Commit

Permalink
Merge pull request #380 from marp-team/upgrade-dependencies
Browse files Browse the repository at this point in the history
Upgrade dependent packages to the latest version
  • Loading branch information
yhatt authored Aug 31, 2024
2 parents d0ea8b9 + 9eaed5a commit a963a15
Show file tree
Hide file tree
Showing 13 changed files with 1,216 additions and 3,179 deletions.
25 changes: 16 additions & 9 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,24 +7,31 @@ module.exports = {
parserOptions: {
ecmaVersion: 'latest',
},
extends: [
'eslint:recommended',
'plugin:import/recommended',
'plugin:import/typescript',
'prettier',
],
extends: ['eslint:recommended', 'plugin:import-x/recommended', 'prettier'],
rules: {
'import/order': ['error', { alphabetize: { order: 'asc' } }],
'import-x/order': ['error', { alphabetize: { order: 'asc' } }],
},
settings: {
'import/ignore': ['@rollup/plugin-node-resolve'],
'import-x/resolver': {
node: true,
},
},
overrides: [
{
files: ['**/*.ts', '**/*.tsx'],
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint'],
extends: ['plugin:@typescript-eslint/recommended', 'prettier'],
extends: [
'plugin:@typescript-eslint/recommended',
'plugin:import-x/typescript',
'prettier',
],
settings: {
'import-x/resolver': {
typescript: true,
node: true,
},
},
rules: {
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,18 @@

- Drop support against end-of-lifed Node.js versions (v16 and earlier) ([#359](https://github.com/marp-team/marp-core/pull/359))

### Added

- Transform emojis up to Unicode 15.1 into Twemoji images ([#380](https://github.com/marp-team/marp-core/pull/380))

### Changed

- Upgrade development Node.js to v18 LTS ([#359](https://github.com/marp-team/marp-core/pull/359))
- Upgrade Marpit to [v3.1.1](https://github.com/marp-team/marpit/releases/v3.1.1) ([#378](https://github.com/marp-team/marp-core/pull/378))
- Bump markdown-it to [v14.1.0](https://github.com/markdown-it/markdown-it/blob/master/CHANGELOG.md#1410---2024-03-19), and follow the latest spec of [CommonMark 0.31.2](https://spec.commonmark.org/0.31.2/)
- Support for CSS nesting (`cssNesting` constructor option)
- Switch package manager from yarn to npm ([#379](https://github.com/marp-team/marp-core/pull/379))
- Upgrade dependent packages to the latest version ([#380](https://github.com/marp-team/marp-core/pull/380))

## v3.9.0 - 2023-10-15

Expand Down
Loading

0 comments on commit a963a15

Please sign in to comment.