-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: update deps * chore(eslint): semi is true * chore: add packageManager
- Loading branch information
1 parent
bdd162e
commit ae263c1
Showing
15 changed files
with
6,754 additions
and
7,341 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// @ts-check | ||
import { createConfigForNuxt } from '@nuxt/eslint-config/flat'; | ||
|
||
// Run `npx @eslint/config-inspector` to inspect the resolved config interactively | ||
export default createConfigForNuxt({ | ||
features: { | ||
// Rules for module authors | ||
tooling: true, | ||
// Rules for formatting | ||
stylistic: { | ||
semi: true, | ||
}, | ||
}, | ||
dirs: { | ||
src: [ | ||
'./playground', | ||
], | ||
}, | ||
}) | ||
.append( | ||
// your custom flat config here... | ||
); |
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,5 +1,6 @@ | ||
{ | ||
"name": "@tdesign-vue-next/nuxt", | ||
"packageManager": "[email protected]", | ||
"version": "0.1.3", | ||
"description": "Nuxt Module for TDesign", | ||
"repository": "tdesignOteam/tdesign-nuxt", | ||
|
@@ -30,28 +31,28 @@ | |
"test:watch": "vitest watch" | ||
}, | ||
"dependencies": { | ||
"@nuxt/kit": "^3.11.1", | ||
"@nuxt/kit": "^3.14.159", | ||
"lodash-es": "^4.17.21" | ||
}, | ||
"peerDependencies": { | ||
"tdesign-icons-vue-next": ">=0.2.2", | ||
"tdesign-icons-vue-next": ">=0.3.3", | ||
"tdesign-vue-next": ">=1" | ||
}, | ||
"devDependencies": { | ||
"@nuxt/devtools": "latest", | ||
"@nuxt/eslint-config": "^0.2.0", | ||
"@nuxt/module-builder": "^0.5.5", | ||
"@nuxt/schema": "^3.11.1", | ||
"@nuxt/test-utils": "^3.12.0", | ||
"@nuxt/eslint-config": "^0.7.0", | ||
"@nuxt/module-builder": "^0.8.4", | ||
"@nuxt/schema": "^3.14.159", | ||
"@nuxt/test-utils": "^3.14.4", | ||
"@types/lodash-es": "^4.17.12", | ||
"@types/node": "^20.11.30", | ||
"changelogen": "^0.5.5", | ||
"eslint": "^8.57.0", | ||
"@types/node": "^22.9.0", | ||
"changelogen": "^0.5.7", | ||
"eslint": "9.14.0", | ||
"less": "^4.2.0", | ||
"nuxt": "^3.11.1", | ||
"prettier": "^3.2.5", | ||
"tdesign-icons-vue-next": "^0.2.2", | ||
"tdesign-vue-next": "^1.9.3", | ||
"vitest": "^1.4.0" | ||
"nuxt": "^3.14.159", | ||
"prettier": "^3.3.3", | ||
"tdesign-icons-vue-next": "^0.3.3", | ||
"tdesign-vue-next": "^1.10.3", | ||
"vitest": "^2.1.5" | ||
} | ||
} |
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,14 +1,17 @@ | ||
export default defineNuxtConfig({ | ||
modules: ['../src/module'], | ||
|
||
devtools: { enabled: true }, | ||
devServer: { port: 17001 }, | ||
compatibilityDate: '2024-11-18', | ||
|
||
tdesign: { | ||
resolveIcons: true | ||
resolveIcons: true, | ||
// include:['Button'] | ||
// exclude: ['Button'] | ||
// iconInclude: ['Edit1'] | ||
// prefix: 'tdesign' | ||
// plugins:['NotifyPlugin'], | ||
// importVariables:'~/assets/theme.css' | ||
}, | ||
devtools: { enabled: true }, | ||
devServer: { port: 17001 } | ||
}); |
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 |
---|---|---|
|
@@ -8,6 +8,6 @@ | |
"generate": "nuxi generate" | ||
}, | ||
"dependencies": { | ||
"nuxt": "latest" | ||
"nuxt": "^3.14.159" | ||
} | ||
} |
Oops, something went wrong.