Skip to content
This repository has been archived by the owner on Dec 8, 2022. It is now read-only.

Commit

Permalink
📝 Update version to 1.0.10 (#326)
Browse files Browse the repository at this point in the history
* Update dependencies

* Remove babel-jest and use @babel/eslint-parser

* update prettier error in eslint config

* Update more dependencies

* add core-js as an explicit dev dep
  • Loading branch information
JanGuillermo committed Jan 14, 2022
1 parent 5f51426 commit 58e6000
Show file tree
Hide file tree
Showing 4 changed files with 22,114 additions and 34,775 deletions.
9 changes: 7 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,16 @@ module.exports = {
},
extends: ['plugin:vue/vue3-essential', 'eslint:recommended', 'prettier'],
parserOptions: {
parser: 'babel-eslint'
parser: '@babel/eslint-parser'
},
plugins: ['prettier'],
rules: {
'prettier/prettier': ['error']
'prettier/prettier': [
'error',
{
endOfLine: 'auto'
}
]
},
overrides: [
{
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,15 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.0.10] - 2022-01-14
### Changed
- Update dependencies

## [1.0.9] - 2021-06-05
### Changed
- Update dependencies
- Fix README (Thanks [manonthemat](https://github.com/manonthemat) for [#186](https://github.com/JanGuillermo/vue3-markdown-it/pull/186)!)

## [1.0.8] - 2021-04-02
### Changed
- Update dependencies
Expand Down Expand Up @@ -77,6 +82,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [markdown-it-task-lists](https://github.com/revin/markdown-it-task-lists) - Add task lists
- [markdown-it-toc-done-right](https://github.com/nagaozen/markdown-it-toc-done-right) - Add table of contents

[1.0.10]: https://github.com/JanGuillermo/vue3-markdown-it/compare/v1.0.9...v1.0.10
[1.0.9]: https://github.com/JanGuillermo/vue3-markdown-it/compare/v1.0.8...v1.0.9
[1.0.8]: https://github.com/JanGuillermo/vue3-markdown-it/compare/v1.0.7...v1.0.8
[1.0.7]: https://github.com/JanGuillermo/vue3-markdown-it/compare/v1.0.6...v1.0.7
Expand Down

0 comments on commit 58e6000

Please sign in to comment.