Skip to content

Commit

Permalink
ui: modal infrastructure
Browse files Browse the repository at this point in the history
  • Loading branch information
raynasorint committed Sep 28, 2023
1 parent cf46e15 commit af0017b
Show file tree
Hide file tree
Showing 12 changed files with 1,009 additions and 10 deletions.
1 change: 1 addition & 0 deletions .agola/config.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ local task_build(version, arch) = {
{ type: 'save_cache', key: 'cache-node' + version + '-date-{{ year }}-{{ month }}-{{ day }}', contents: [{ source_dir: '/root/.pnpm-store' }] },
{ type: 'run', command: 'pnpm run check' },
{ type: 'run', command: 'pnpm run build' },
{ type: 'run', command: 'pnpm run coverage' },
],
};

Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
.DS_Store
node_modules
/dist
coverage

# local env files
.env.local
Expand Down
8 changes: 7 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
"scripts": {
"serve": "vite",
"build": "vite build",
"check": "vue-tsc --noEmit --skipLibCheck"
"check": "vue-tsc --noEmit --skipLibCheck",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@mdi/font": "^7.1.96",
Expand Down Expand Up @@ -42,19 +44,23 @@
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vitest/coverage-v8": "^0.34.5",
"@volar-plugins/prettier": "^1.2.0",
"@vue/compiler-sfc": "^3.2.47",
"@vue/eslint-config-typescript": "^11.0.2",
"@vue/test-utils": "^2.4.1",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.9.0",
"jsdom": "^22.1.0",
"prettier": "2.8.4",
"sass": "^1.59.2",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-rewrite-all": "^1.0.1",
"vitest": "^0.34.5",
"vue-tsc": "^1.2.0"
}
}
Loading

0 comments on commit af0017b

Please sign in to comment.