Skip to content

fix: dayjs resolver on @nuxt/vite-builder #62

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
5 changes: 0 additions & 5 deletions .eslintignore

This file was deleted.

4 changes: 0 additions & 4 deletions .eslintrc

This file was deleted.

5 changes: 5 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import { createConfigForNuxt } from '@nuxt/eslint-config/flat';

export default createConfigForNuxt(undefined, {
ignores: ['dist', 'node_modules', '**/*.json', '**/*.md', '.github'],
});
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,22 +34,22 @@
},
"dependencies": {
"@ant-design/icons-vue": "^7.0.1",
"@nuxt/kit": "^3.12.1"
"@nuxt/kit": "^3.13.2"
},
"peerDependencies": {
"ant-design-vue": ">=4"
},
"devDependencies": {
"@nuxt/eslint-config": "^0.1.1",
"@nuxt/module-builder": "^0.4.0",
"@nuxt/schema": "^3.12.1",
"@nuxt/test-utils": "^3.13.1",
"@nuxt/eslint-config": "^0.5.7",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "^3.13.2",
"@nuxt/test-utils": "^3.14.2",
"@types/node": "^18.19.34",
"ant-design-vue": "^4.2.3",
"ant-design-vue": "^4.2.4",
"changelogen": "^0.5.5",
"eslint": "^8.57.0",
"nuxt": "^3.12.1",
"typescript": "5.1.6",
"vitest": "^0.31.4"
"eslint": "^9.10.0",
"nuxt": "^3.13.2",
"typescript": "5.6.2",
"vitest": "^2.1.1"
}
}
}
4 changes: 2 additions & 2 deletions playground/app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
type="primary"
@click="handleMessage('success')"
>
message success
message success
</a-button>
<a-button @click="handleMessage('info')">
message info
Expand Down Expand Up @@ -88,10 +88,10 @@
<script setup lang="ts">
import { theme as antdTheme } from "ant-design-vue"
import { reactive, ref} from "#imports";
import type { CSSProperties } from 'vue';
const theme = reactive({
algorithm: antdTheme.defaultAlgorithm
})
import type { CSSProperties } from 'vue';
const value = ref('horizontal');
const baseStyle: CSSProperties = {
width: '25%',
Expand Down
Loading