Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"postcss": "^7.0.39 || ^8.3.3",
"react": "^18.3.1",
"typescript": "^5.2",
"vite": "^5.0.0 || ^7.0.7",
"vite": "^8.0.0",
"vue": "^3.2",
"vuepress": "^2.0.0-rc.24"
}
Expand Down Expand Up @@ -134,8 +134,8 @@
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^20.4.5",
"@vitejs/plugin-vue": "^5.2.3",
"@vitest/coverage-v8": "^1.0.0",
"@vitejs/plugin-vue": "^6.0.5",
"@vitest/coverage-v8": "^4.1.0",
"@vue/tsconfig": "^0.4.0",
"axe-core": "^4.7.2",
"axe-playwright": "^2.0.3",
Expand All @@ -147,7 +147,7 @@
"eslint-plugin-eslint-plugin": "6.3.1",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-json": "4.0.1",
"eslint-plugin-storybook": "10.2.6",
"eslint-plugin-storybook": "10.3.0",
"eslint-plugin-vitest": "^0.5.4",
"eslint-plugin-vue": "^10.4.0",
"eslint-plugin-vuejs-accessibility": "^2.4.1",
Expand Down Expand Up @@ -178,10 +178,10 @@
"typedoc": "^0.28.2",
"typedoc-plugin-markdown": "^4.6.1",
"typescript": "^5.2",
"vite": "^5.4.2",
"vite": "^8.0.0",
Comment thread
braddialpad marked this conversation as resolved.
"vite-bundle-visualizer": "^1.2.1",
"vite-plugin-dts": "^4.0.3",
"vitest": "^1.6.1",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.1.0",
"vue-docgen-api": "^4.75.0",
"vue-template-compiler": "^2.7.16",
"wait-on": "^7.2.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/combinator/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default defineConfig({
build: {
sourcemap: true,
minify: false,
rollupOptions: {
rolldownOptions: {
external: [
/^@dialpad/,
'change-case',
Expand Down
2 changes: 1 addition & 1 deletion packages/dialtone-docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"glob": "^11.0.3",
"gray-matter": "^4.0.3",
"handlebars": "^4.7.8",
"vitest": "^1.6.1"
"vitest": "^4.1.0"
},
"keywords": ["documentation", "ai", "dialtone"],
"license": "MIT"
Expand Down
2 changes: 1 addition & 1 deletion packages/dialtone-icons/vue2/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default defineConfig({
},
formats: ['es', 'cjs'],
},
rollupOptions: {
rolldownOptions: {
external: ['vue'],
output: {
minifyInternalExports: true,
Expand Down
2 changes: 1 addition & 1 deletion packages/dialtone-icons/vue3/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default defineConfig({
},
formats: ['es', 'cjs'],
},
rollupOptions: {
rolldownOptions: {
external: ['vue'],
output: {
minifyInternalExports: true,
Expand Down
2 changes: 1 addition & 1 deletion packages/dialtone-tokens/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default defineConfig({
},
formats: ['es', 'cjs'],
},
rollupOptions: {
rolldownOptions: {
output: {
minifyInternalExports: true,
chunkFileNames: () => 'themes/chunks/[name]-[hash].js',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ describe('DtCombobox Tests', () => {
mockAttrs = {};
mockProps = {};
mockSlots = {};
vi.clearAllMocks();
vi.restoreAllMocks();
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,14 @@ vi.mock('@floating-ui/dom', () => ({
}));

vi.mock('@tiptap/vue-3', () => ({
VueRenderer: vi.fn().mockImplementation(() => ({
element: document.createElement('div'),
destroy: vi.fn(),
updateProps: vi.fn(),
ref: { onKeyDown: vi.fn() },
})),
VueRenderer: vi.fn().mockImplementation(function () {
return {
element: document.createElement('div'),
destroy: vi.fn(),
updateProps: vi.fn(),
ref: { onKeyDown: vi.fn() },
};
}),
}));

vi.mock('vue', () => ({
Expand Down
10 changes: 5 additions & 5 deletions packages/dialtone-vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,15 +60,15 @@
"devDependencies": {
"@dialpad/dialtone-css": "workspace:*",
"@dialpad/generator-dialtone": "workspace:*",
"@storybook/addon-a11y": "10.2.6",
"@storybook/addon-docs": "10.2.6",
"@storybook/addon-links": "10.2.6",
"@storybook/addon-a11y": "10.3.0",
"@storybook/addon-docs": "10.3.0",
"@storybook/addon-links": "10.3.0",
"@storybook/test-runner": "^0.24.2",
"@storybook/vue3-vite": "10.2.6",
"@storybook/vue3-vite": "10.3.0",
"@vue/test-utils": "^2.4.0",
"@vueless/storybook-dark-mode": "^10.0.7",
"react": "19.2.4",
"storybook": "10.2.6",
"storybook": "10.3.0",
"vue": "^3.3.4"
},
"peerDependencies": {
Expand Down
3 changes: 1 addition & 2 deletions packages/dialtone-vue/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export default defineConfig({
build: {
sourcemap: true,
minify: true,
rollupOptions: {
rolldownOptions: {
external: [
/^@dialpad/,
/^@tiptap\/(?!vue-3)/,
Expand Down Expand Up @@ -132,7 +132,6 @@ export default defineConfig({
'.storybook/**',
'storybook-static/**',
],
all: true, // include all files in coverage report
clean: true, // clean coverage directory before running tests
skipFull: true, // skip full coverage report
thresholds: { // will fail the build if coverage is below these thresholds
Expand Down
Loading
Loading