Skip to content

Commit

Permalink
Upgrade all packages
Browse files Browse the repository at this point in the history
  • Loading branch information
gurupras committed Apr 2, 2024
1 parent f586b5e commit d22f2b3
Show file tree
Hide file tree
Showing 18 changed files with 9,455 additions and 38,861 deletions.
31 changes: 31 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
module.exports = {
env: {
browser: true,
es2021: true
},
extends: ['standard-with-typescript', 'plugin:vue/vue3-essential', 'plugin:storybook/recommended'],
overrides: [
{
env: {
node: true
},
files: [
'.eslintrc.{js,cjs}'
],
parserOptions: {
sourceType: 'script'
}
}
],
parserOptions: {
ecmaVersion: 'latest',
parser: '@typescript-eslint/parser',
sourceType: 'module'
},
plugins: [
'vue',
'@typescript-eslint'
],
rules: {
}
}
21 changes: 0 additions & 21 deletions .eslintrc.js

This file was deleted.

2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@ dist-ssr

/storybook-static
/coverage

*storybook.log
49 changes: 0 additions & 49 deletions .storybook/main.js

This file was deleted.

19 changes: 19 additions & 0 deletions .storybook/main.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import type { StorybookConfig } from "@storybook/vue3-vite";

const config: StorybookConfig = {
stories: ["../src/**/*.mdx", "../src/**/*.stories.@(js|jsx|mjs|ts|tsx)"],
addons: [
"@storybook/addon-links",
"@storybook/addon-essentials",
"@chromatic-com/storybook",
"@storybook/addon-interactions",
],
framework: {
name: "@storybook/vue3-vite",
options: {},
},
docs: {
autodocs: "tag",
},
};
export default config;
4 changes: 0 additions & 4 deletions .storybook/preview-head.html

This file was deleted.

9 changes: 0 additions & 9 deletions .storybook/preview.js

This file was deleted.

14 changes: 14 additions & 0 deletions .storybook/preview.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import type { Preview } from "@storybook/vue3";

const preview: Preview = {
parameters: {
controls: {
matchers: {
color: /(background|color)$/i,
date: /Date$/i,
},
},
},
};

export default preview;
3 changes: 0 additions & 3 deletions .vscode/extensions.json

This file was deleted.

14 changes: 7 additions & 7 deletions components.d.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
// generated by unplugin-vue-components
// We suggest you to commit this file into source control
// Read more: https://github.com/vuejs/vue-next/pull/3399
import '@vue/runtime-core'
/* eslint-disable */
/* prettier-ignore */
// @ts-nocheck
// Generated by unplugin-vue-components
// Read more: https://github.com/vuejs/core/pull/3399
export {}

declare module '@vue/runtime-core' {
declare module 'vue' {
export interface GlobalComponents {
Column: typeof import('./src/components/column.vue')['default']
DateModifiedColumnEntry: typeof import('./src/components/date-modified-column-entry.vue')['default']
Expand All @@ -13,5 +15,3 @@ declare module '@vue/runtime-core' {
SizeColumnEntry: typeof import('./src/components/size-column-entry.vue')['default']
}
}

export {}
Loading

0 comments on commit d22f2b3

Please sign in to comment.