forked from AlexandreBonaventure/vue-mq
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Type builder, vuetify 3 preset and migration to ESM
- Loading branch information
Craig Riley
committed
Sep 16, 2024
1 parent
96ebad2
commit c560078
Showing
24 changed files
with
3,222 additions
and
5,979 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -2,6 +2,7 @@ node_modules | |
.DS_Store | ||
dist | ||
dist-ssr | ||
types | ||
*.local | ||
demo/scss | ||
*.tgz | ||
|
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,7 @@ | ||
## Version 4 | ||
|
||
- Migrated project to use `type: "module"`. Bumped major as a precaution | ||
- Migrated to ESlint v9 with flat config | ||
- Switched testing library from Jest to Vitest | ||
- Added type builder from JSDoc comments | ||
- **Feature**: New `vuetify3` preset |
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,12 +1,13 @@ | ||
{ | ||
"type": "module", | ||
"scripts": { | ||
"dev": "vitepress dev", | ||
"build": "vitepress build", | ||
"preview": "vitepress preview" | ||
}, | ||
"devDependencies": { | ||
"fast-glob": "^3.3.2", | ||
"vitepress": "1.0.0-rc.42", | ||
"vue": "^3.4.15" | ||
"vitepress": "^1.3.4", | ||
"vue": "^3.5.6" | ||
} | ||
} | ||
} |
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 @@ | ||
export default {}; |
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,20 @@ | ||
import pluginVue from "eslint-plugin-vue"; | ||
import configPrettier from "eslint-config-prettier"; | ||
import jsdoc from "eslint-plugin-jsdoc"; | ||
import js from "@eslint/js"; | ||
|
||
export default [ | ||
js.configs.recommended, | ||
jsdoc.configs["flat/recommended"], | ||
configPrettier, | ||
...pluginVue.configs["flat/recommended"], | ||
{ | ||
plugins: [jsdoc], | ||
}, | ||
{ | ||
rules: { | ||
"vue/multi-word-component-names": "off", | ||
"vue/valid-v-slot": "off", | ||
}, | ||
}, | ||
]; |
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.