Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
bichikim committed Jan 14, 2023
1 parent fcae5a3 commit 122f4a8
Show file tree
Hide file tree
Showing 95 changed files with 5,953 additions and 5,200 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ module.exports = {
'prefer-const': 'error',
'prefer-destructuring': 'warn',
'prefer-exponentiation-operator': 'warn',
'prefer-named-capture-group': 'error',
'prefer-named-capture-group': 'off',
'prefer-numeric-literals': 'error',
'prefer-object-spread': 'error',
'prefer-promise-reject-errors': 'error',
Expand Down
6 changes: 3 additions & 3 deletions coong/client-quasar/src/shims-vue.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

// Mocks all files ending in `.vue` showing them as plain Vue instances
declare module '*.vue' {
import type { DefineComponent } from 'vue';
const component: DefineComponent<{}, {}, any>;
export default component;
import type {DefineComponent} from 'vue'
const component: DefineComponent<{}, {}, any>
export default component
}
6 changes: 3 additions & 3 deletions coong/coong-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
"description": "",
"scripts": {
"build:spa": "vite build --outDir dist/spa",
"preview": "vite preview",
"dev:spa": "vite --host",
"fix:vue-demi": "npx vue-demi-fix",
"generate-pwa-icons": "pnpx pwa-asset-generator public/favicon.svg public/images/pwa --path-override /images/pwa",
"generator:graphql": "graphql-codegen",
"postinstall": "ts-gql build"
"postinstall": "ts-gql build",
"preview": "vite preview"
},
"dependencies": {
"@apollo/client": "^3.7.2",
Expand Down Expand Up @@ -51,7 +51,6 @@
"@iconify/json": "^2.1.151",
"@ts-gql/babel-plugin": "^0.1.0",
"@types/node": "^18.11.14",
"vite-ssg": "^0.22.1",
"@vitejs/plugin-vue": "4.0.0",
"@vitejs/plugin-vue-jsx": "3.0.0",
"@vue/server-renderer": "^3.2.45",
Expand All @@ -70,6 +69,7 @@
"vite-plugin-imp": "^2.3.1",
"vite-plugin-pwa": "^0.13.3",
"vite-plugin-top-level-await": "^1.2.2",
"vite-ssg": "^0.22.1",
"vite-tsconfig-paths": "^4.0.2",
"vue-tsc": "^1.0.13",
"workbox-build": "^6.5.4",
Expand Down
Loading

0 comments on commit 122f4a8

Please sign in to comment.