-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: add vite builder * fix: more fixes (still wip) * fix: drag handle * test: migrate tests * ci: run semantic-release on all branches * chore(release): 2.0.2 [skip ci] ## [2.0.2](v2.0.1...v2.0.2) (2022-07-11) ### Bug Fixes * Revert "fix: drag handle" * fix: drag handle * feat: support Vue 3 BREAKING CHANGE: do not support Vue 2 * chore(release): 3.0.0 [skip ci] # [3.0.0](v2.0.2...v3.0.0) (2022-08-22) ### Bug Fixes * drag handle ([db1f740](db1f740)) ### Features * support Vue 3 ([d6e9559](d6e9559)) ### BREAKING CHANGES * do not support Vue 2 * fix: update package.json to support CSS export / import (#188) * chore(release): 3.0.1 [skip ci] ## [3.0.1](v3.0.0...v3.0.1) (2022-10-11) ### Bug Fixes * update package.json to support CSS export / import ([#188](#188)) ([e5394ea](e5394ea)) * docs: fix stories (#194) * feat(events): pass items in events (#195) * feat(events): pass items in expanded/selected events * feat(events): omit some internal properties + fix tests * chore(release): 3.1.0 [skip ci] # [3.1.0](v3.0.1...v3.1.0) (2023-01-04) ### Features * **events:** pass items in events ([#195](#195)) ([08681a0](08681a0)) * ci: use Node.js 16.19.1 * chore(deps): upgrade vuepress to 2.0.0-beta.61 (#203) * chore(deps): upgrade vuepress --------- Co-authored-by: semantic-release-bot <semantic-release-bot@martynus.net> Co-authored-by: Tom Coonen <tom@coonen.eu>
- Loading branch information
1 parent
98ef0ce
commit 1f24b1c
Showing
36 changed files
with
3,784 additions
and
6,840 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
14.17 | ||
16.19.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,36 @@ | ||
const path = require("path"); | ||
const { loadConfigFromFile, mergeConfig } = require("vite"); | ||
const vueJsx = require("@vitejs/plugin-vue-jsx"); | ||
|
||
module.exports = { | ||
core: { | ||
builder: "webpack5", | ||
builder: "@storybook/builder-vite", | ||
}, | ||
stories: [ | ||
"../stories/**/*.stories.mdx", | ||
"../stories/**/*.stories.@(js|jsx|ts|tsx)", | ||
], | ||
addons: ["@storybook/addon-links", "@storybook/addon-essentials"], | ||
framework: "@storybook/vue3", | ||
async viteFinal(config) { | ||
const { config: userConfig } = await loadConfigFromFile( | ||
path.resolve(__dirname, "../vite.config.js") | ||
); | ||
|
||
return { | ||
...config, | ||
define: { | ||
...config.define, | ||
global: "window", | ||
}, | ||
resolve: { | ||
...config.resolve, | ||
alias: { | ||
...config.resolve.alias, | ||
"@": path.resolve("src"), | ||
}, | ||
}, | ||
plugins: [...config.plugins, vueJsx()], | ||
}; | ||
}, | ||
stories: ["../stories/*.stories.js"], | ||
addons: ["@storybook/addon-essentials", "@storybook/addon-controls"], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
export const parameters = { | ||
actions: { argTypesRegex: "^on[A-Z].*" }, | ||
controls: { | ||
matchers: { | ||
color: /(background|color)$/i, | ||
date: /Date$/, | ||
}, | ||
}, | ||
}; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# [3.1.0](https://github.com/jledentu/vue-finder/compare/v3.0.1...v3.1.0) (2023-01-04) | ||
|
||
|
||
### Features | ||
|
||
* **events:** pass items in events ([#195](https://github.com/jledentu/vue-finder/issues/195)) ([08681a0](https://github.com/jledentu/vue-finder/commit/08681a04dd3388b61174d44b6fb4dc24ad78245a)) | ||
|
||
## [3.0.1](https://github.com/jledentu/vue-finder/compare/v3.0.0...v3.0.1) (2022-10-11) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* update package.json to support CSS export / import ([#188](https://github.com/jledentu/vue-finder/issues/188)) ([e5394ea](https://github.com/jledentu/vue-finder/commit/e5394ea7840a2f9b828da7be8743505d41c0c366)) | ||
|
||
# [3.0.0](https://github.com/jledentu/vue-finder/compare/v2.0.2...v3.0.0) (2022-08-22) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* drag handle ([db1f740](https://github.com/jledentu/vue-finder/commit/db1f7406c7b98793db7b3eda65220930ab583d25)) | ||
|
||
|
||
### Features | ||
|
||
* support Vue 3 ([d6e9559](https://github.com/jledentu/vue-finder/commit/d6e955943f41b67f8b5b21d0e9df0ff02c616d2d)) | ||
|
||
|
||
### BREAKING CHANGES | ||
|
||
* do not support Vue 2 | ||
|
||
## [2.0.2](https://github.com/jledentu/vue-finder/compare/v2.0.1...v2.0.2) (2022-07-11) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* more fixes (still wip) ([e365751](https://github.com/jledentu/vue-finder/commit/e3657517985573b09bbcc2971d67c8123d327a25)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.