-
-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: bump deps * refactor: ts config changes (WIP) * fixed TS issues * fix e2e tests * fix component tests * chore: removed firefox variant * added build step for e2e tests * add type checking * chean up index page * add coverage * freeze lockfile * docs: update docs
- Loading branch information
Showing
30 changed files
with
2,166 additions
and
1,683 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
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 |
---|---|---|
|
@@ -44,14 +44,22 @@ jobs: | |
node-version: 16 | ||
cache: 'pnpm' | ||
|
||
- name: Install Playwright browsers | ||
run: npx playwright install --with-deps | ||
- name: Type Check | ||
run: pnpm type-check | ||
|
||
- name: Run unit tests | ||
run: pnpm test:ci | ||
|
||
- name: Run component tests | ||
run: pnpm test:ci-ct | ||
- name: Install Playwright browsers | ||
run: npx playwright install --with-deps | ||
|
||
- name: Run e2e tests | ||
run: pnpm test:ci-e2e | ||
run: | | ||
pnpm build | ||
pnpm test:ci-e2e | ||
- name: Coverage | ||
uses: davelosert/[email protected] | ||
if: ${{ always() }} | ||
# with: | ||
# vite-config-path: ./vite.config.ts |
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 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 |
---|---|---|
@@ -1,58 +1,65 @@ | ||
{ | ||
"name": "vite-ts-tailwind-starter", | ||
"version": "3.1.0", | ||
"version": "4.0.0", | ||
"scripts": { | ||
"dev": "vite", | ||
"build": "vite build", | ||
"preview": "vite build && vite preview", | ||
"start": "pnpm dev & wait-on tcp:3000 -v", | ||
"test": "vitest", | ||
"coverage": "vitest run --coverage", | ||
"test-ct": "playwright test -c playwright-ct.config.ts", | ||
"test-e2e": "playwright test -c playwright.config.ts", | ||
"test:ci": "vitest", | ||
"test-e2e": "playwright test --headed", | ||
"test:ci": "vitest run --coverage", | ||
"test:ci-e2e": "playwright test", | ||
"test:ci-ct": "playwright test -c playwright-ct.config.ts" | ||
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false" | ||
}, | ||
"dependencies": { | ||
"@vueuse/head": "1.1.19", | ||
"pinia": "2.0.28", | ||
"vue": "3.2.45", | ||
"@vueuse/head": "1.1.23", | ||
"pinia": "2.0.34", | ||
"vue": "3.2.47", | ||
"vue-router": "4.1.6" | ||
}, | ||
"devDependencies": { | ||
"@pinia/testing": "0.0.14", | ||
"@playwright/experimental-ct-vue": "1.31.2", | ||
"@playwright/test": "1.31.2", | ||
"@pinia/testing": "0.0.16", | ||
"@playwright/experimental-ct-vue": "1.32.3", | ||
"@playwright/test": "1.32.3", | ||
"@rushstack/eslint-patch": "1.2.0", | ||
"@tailwindcss/aspect-ratio": "0.4.2", | ||
"@tailwindcss/forms": "0.5.3", | ||
"@tailwindcss/line-clamp": "0.4.2", | ||
"@tailwindcss/typography": "0.5.8", | ||
"@types/node": "18.15.1", | ||
"@typescript-eslint/eslint-plugin": "5.54.1", | ||
"@typescript-eslint/parser": "5.54.1", | ||
"@vitejs/plugin-vue": "4.0.0", | ||
"@vue/test-utils": "2.3.1", | ||
"autoprefixer": "10.4.13", | ||
"@tailwindcss/line-clamp": "0.4.4", | ||
"@tailwindcss/typography": "0.5.9", | ||
"@types/jsdom": "21.1.1", | ||
"@types/lodash-es": "4.17.7", | ||
"@types/node": "18.15.11", | ||
"@typescript-eslint/eslint-plugin": "5.58.0", | ||
"@typescript-eslint/parser": "5.58.0", | ||
"@vitejs/plugin-vue": "4.1.0", | ||
"@vitest/coverage-c8": "0.30.1", | ||
"@vue/eslint-config-prettier": "7.1.0", | ||
"@vue/eslint-config-typescript": "11.0.2", | ||
"@vue/test-utils": "2.3.2", | ||
"@vue/tsconfig": "0.1.3", | ||
"autoprefixer": "10.4.14", | ||
"c8": "7.13.0", | ||
"cssnano": "5.1.14", | ||
"eslint": "8.36.0", | ||
"eslint-config-prettier": "8.7.0", | ||
"cssnano": "6.0.0", | ||
"eslint": "8.38.0", | ||
"eslint-config-prettier": "8.8.0", | ||
"eslint-plugin-import": "2.27.5", | ||
"eslint-plugin-node": "11.1.0", | ||
"eslint-plugin-promise": "6.1.1", | ||
"eslint-plugin-security": "1.7.1", | ||
"eslint-plugin-vue": "9.9.0", | ||
"happy-dom": "8.9.0", | ||
"postcss": "8.4.20", | ||
"eslint-plugin-vue": "9.10.0", | ||
"jsdom": "21.1.1", | ||
"lodash-es": "4.17.21", | ||
"postcss": "8.4.21", | ||
"postcss-import": "15.1.0", | ||
"postcss-nesting": "11.2.1", | ||
"tailwindcss": "3.2.4", | ||
"typescript": "4.9.4", | ||
"unplugin-auto-import": "0.15.1", | ||
"unplugin-vue-components": "0.24.1", | ||
"vite": "4.1.4", | ||
"vitest": "0.29.2", | ||
"postcss-nesting": "11.2.2", | ||
"tailwindcss": "3.3.1", | ||
"typescript": "5.0.4", | ||
"unplugin-auto-import": "0.15.2", | ||
"vite": "4.2.1", | ||
"vitest": "0.30.1", | ||
"vue-tsc": "^1.2.0", | ||
"wait-on": "7.0.1" | ||
} | ||
} |
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
b034ef0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
vite-ts-tailwind-starter – ./
vite-ts-tailwind-starter-git-main-uninen.vercel.app
vite-ts-tailwind-starter.vercel.app
vite-ts-tailwind-starter-uninen.vercel.app