forked from fluidd-core/fluidd
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: use create-vue defaults (fluidd-core#943)
Signed-off-by: Pedro Lamas <[email protected]>
- Loading branch information
1 parent
b5dfff6
commit 9b431f7
Showing
37 changed files
with
2,081 additions
and
1,072 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
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,21 @@ | ||
/// <reference types="vite/client" /> | ||
/// <reference types="vitest/globals" /> | ||
/// <reference types="vuetify" /> | ||
/// <reference types="vue-meta" /> | ||
/// <reference types="vite-plugin-pwa/client" /> | ||
|
||
declare module '*.yaml' { | ||
const data: any | ||
export default data | ||
} | ||
|
||
interface ImportMetaEnv { | ||
readonly VUE_APP_I18N_LOCALE?: string | ||
readonly VUE_APP_I18N_FALLBACK_LOCALE?: string | ||
readonly VERSION: string | ||
readonly HASH: string | ||
} | ||
|
||
interface ImportMeta { | ||
readonly env: ImportMetaEnv | ||
} |
Large diffs are not rendered by default.
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 |
---|---|---|
|
@@ -25,8 +25,9 @@ | |
"release:minor": "npm run release -- --release-as minor", | ||
"release:patch": "npm run release -- --release-as patch", | ||
"release:rc": "npm run release -- --prerelease rc", | ||
"test": "vitest", | ||
"test:unit": "vitest", | ||
"test": "npm run test:unit", | ||
"test:unit": "vitest --environment jsdom", | ||
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false", | ||
"theme:convert": "cd tools; node convertTheme.js" | ||
}, | ||
"main": "index.js", | ||
|
@@ -53,7 +54,7 @@ | |
"register-service-worker": "^1.7.2", | ||
"semver": "^7.3.8", | ||
"uuid": "^9.0.0", | ||
"vue": "^2.7.13", | ||
"vue": "^2.7.14", | ||
"vue-class-component": "^7.2.6", | ||
"vue-echarts": "^6.2.3", | ||
"vue-i18n": "^8.27.2", | ||
|
@@ -71,36 +72,39 @@ | |
"devDependencies": { | ||
"@mdi/js": "^7.0.96", | ||
"@originjs/vite-plugin-content": "^1.0.1", | ||
"@types/jsdom": "^20.0.1", | ||
"@types/lodash-es": "^4.17.6", | ||
"@types/md5": "^2.3.2", | ||
"@types/semver": "^7.3.12", | ||
"@types/node": "^18.11.9", | ||
"@types/semver": "^7.3.13", | ||
"@types/uuid": "^8.3.4", | ||
"@typescript-eslint/eslint-plugin": "^5.41.0", | ||
"@typescript-eslint/parser": "^5.41.0", | ||
"@vitejs/plugin-vue2": "^2.0.0", | ||
"@typescript-eslint/eslint-plugin": "^5.42.1", | ||
"@typescript-eslint/parser": "^5.42.1", | ||
"@vitejs/plugin-vue2": "^2.0.1", | ||
"@vue/eslint-config-standard": "^8.0.1", | ||
"@vue/eslint-config-typescript": "^11.0.2", | ||
"@vue/test-utils": "^1.3.3", | ||
"@vue/tsconfig": "^0.1.3", | ||
"eslint": "^8.26.0", | ||
"eslint-plugin-vue": "^9.6.0", | ||
"eslint": "^8.27.0", | ||
"eslint-plugin-vue": "^9.7.0", | ||
"husky": "^7.0.4", | ||
"jsdom": "^20.0.1", | ||
"json-loader": "^0.5.7", | ||
"jsdom": "^20.0.2", | ||
"mockdate": "^3.0.5", | ||
"monaco-vscode-textmate-theme-converter": "^0.1.7", | ||
"sass": "~1.32", | ||
"shx": "^0.3.4", | ||
"standard-version": "^9.5.0", | ||
"typescript": "^4.8.4", | ||
"unplugin-vue-components": "^0.22.9", | ||
"vite": "^3.1.8", | ||
"vite": "^3.2.3", | ||
"vite-plugin-checker": "^0.5.1", | ||
"vite-plugin-monaco-editor": "^1.1.0", | ||
"vite-plugin-pwa": "^0.13.1", | ||
"vitest": "^0.24.3", | ||
"vite-plugin-pwa": "^0.13.3", | ||
"vitest": "^0.25.1", | ||
"vue-debounce-decorator": "^1.0.1", | ||
"vue-i18n-extract": "^2.0.7", | ||
"vue-template-compiler": "^2.7.13" | ||
"vue-template-compiler": "^2.7.14", | ||
"vue-tsc": "^1.0.9" | ||
}, | ||
"_id": "[email protected]", | ||
"bugs": { | ||
|
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
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
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
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
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
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
Oops, something went wrong.