Skip to content

Commit

Permalink
build: version 4.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
meteorlxy committed May 10, 2023
1 parent 7d434c7 commit 621fc38
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 18 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# [4.1.0](https://github.com/meteorlxy/vue-showdown/compare/v4.0.0...v4.1.0) (2023-05-10)


### Features

* drop node 14 ([bba3951](https://github.com/meteorlxy/vue-showdown/commit/bba395150e4466d0eb11cb23a3fc72dad6a5b7c5))



# [4.0.0](https://github.com/meteorlxy/vue-showdown/compare/v3.3.0...v4.0.0) (2022-12-14)


Expand Down
4 changes: 2 additions & 2 deletions dist/vue-showdown.cjs.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/*!
* vue-showdown - Use showdown as a vue component
*
* @version v4.0.0
* @version v4.1.0
* @link https://vue-showdown.js.org
* @license MIT
* @copyright 2018-2022 meteorlxy
* @copyright 2018-2023 meteorlxy
*/

'use strict';
Expand Down
14 changes: 7 additions & 7 deletions dist/vue-showdown.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import showdown from 'showdown';
import showdown, { Flavor, ShowdownOptions } from 'showdown';
export { default as showdown } from 'showdown';
import * as vue from 'vue';
import { PropType, Plugin } from 'vue';
Expand Down Expand Up @@ -49,7 +49,7 @@ declare const VueShowdown: vue.DefineComponent<{
* @see https://github.com/showdownjs/showdown#flavors
*/
flavor: {
type: PropType<showdown.Flavor | null>;
type: PropType<Flavor | null>;
required: false;
default: null;
};
Expand All @@ -59,7 +59,7 @@ declare const VueShowdown: vue.DefineComponent<{
* @see https://github.com/showdownjs/showdown#valid-options
*/
options: {
type: PropType<showdown.ShowdownOptions>;
type: PropType<ShowdownOptions>;
required: false;
default: () => {};
};
Expand Down Expand Up @@ -114,7 +114,7 @@ declare const VueShowdown: vue.DefineComponent<{
* @see https://github.com/showdownjs/showdown#flavors
*/
flavor: {
type: PropType<showdown.Flavor | null>;
type: PropType<Flavor | null>;
required: false;
default: null;
};
Expand All @@ -124,7 +124,7 @@ declare const VueShowdown: vue.DefineComponent<{
* @see https://github.com/showdownjs/showdown#valid-options
*/
options: {
type: PropType<showdown.ShowdownOptions>;
type: PropType<ShowdownOptions>;
required: false;
default: () => {};
};
Expand Down Expand Up @@ -158,8 +158,8 @@ declare const VueShowdown: vue.DefineComponent<{
extensions: Required<(string | (() => showdown.ShowdownExtension | showdown.ShowdownExtension[]) | showdown.ShowdownExtension | showdown.ShowdownExtension[])[] | null | undefined>;
markdown: string | null;
tag: string;
flavor: showdown.Flavor | null;
options: showdown.ShowdownOptions;
flavor: Flavor | null;
options: ShowdownOptions;
vueTemplate: boolean;
vueTemplateData: Record<string, any>;
}>;
Expand Down
4 changes: 2 additions & 2 deletions dist/vue-showdown.esm.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/*!
* vue-showdown - Use showdown as a vue component
*
* @version v4.0.0
* @version v4.1.0
* @link https://vue-showdown.js.org
* @license MIT
* @copyright 2018-2022 meteorlxy
* @copyright 2018-2023 meteorlxy
*/

import showdown from 'showdown';
Expand Down
4 changes: 2 additions & 2 deletions dist/vue-showdown.esm.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/vue-showdown.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/*!
* vue-showdown - Use showdown as a vue component
*
* @version v4.0.0
* @version v4.1.0
* @link https://vue-showdown.js.org
* @license MIT
* @copyright 2018-2022 meteorlxy
* @copyright 2018-2023 meteorlxy
*/

(function (global, factory) {
Expand Down
4 changes: 2 additions & 2 deletions dist/vue-showdown.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-showdown",
"version": "4.0.0",
"version": "4.1.0",
"description": "Use showdown as a vue component",
"keywords": [
"vue",
Expand Down

1 comment on commit 621fc38

@vercel
Copy link

@vercel vercel bot commented on 621fc38 May 10, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

vue-showdown – ./

vue-showdown.vercel.app
vue-showdown-meteorlxy.vercel.app
vue-showdown-git-main-meteorlxy.vercel.app

Please sign in to comment.