Skip to content

Commit

Permalink
Merge pull request #40 from webdevnerdstuff/dev
Browse files Browse the repository at this point in the history
v2.3.1
  • Loading branch information
webdevnerdstuff authored Dec 2, 2023
2 parents c7ee3b4 + 0ab3e42 commit 6073819
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Change Log
All notable changes to the "vue-code-block" plugin will be documented in this file.

## v2.3.1
12-02-2023
[main] (@webdevnerdstuff)
* Add default export

## v2.3.0
12-02-2023
[main] (@webdevnerdstuff)
Expand Down
1 change: 1 addition & 0 deletions dist/plugin/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ import type { Props } from './types';
import VCodeBlock from './VCodeBlock.vue';
export declare const codeBlockOptions: unique symbol;
export declare function createVCodeBlock(options?: Props): (app: App) => void;
export default VCodeBlock;
export { VCodeBlock, };
8 changes: 4 additions & 4 deletions dist/vue-code-block.cjs.js

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions dist/vue-code-block.es.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wdns/vue-code-block",
"version": "2.3.0",
"version": "2.3.1",
"description": "Vue 3 CodeBlock - Highlight your code with ease using this syntax highlighting component powered by PrismJS or Highlight.js.",
"private": false,
"publishConfig": {
Expand Down
2 changes: 2 additions & 0 deletions src/plugin/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ export function createVCodeBlock(options: Props = {}) {
};
}

export default VCodeBlock;

export {
VCodeBlock,
};

0 comments on commit 6073819

Please sign in to comment.