Skip to content

Commit

Permalink
feat: 🔖 release - 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
CRBroughton committed May 19, 2023
1 parent 7027dbd commit 4069917
Show file tree
Hide file tree
Showing 5 changed files with 2,124 additions and 2,149 deletions.
1 change: 0 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,5 @@ jobs:

- run: pnpm i --frozen-lockfile
- run: pnpm run prisma:generate
- run: pnpm run test:prepare
- run: pnpm run test
- run: pnpm run build
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# v3

## 0.4.0

### General Changes

- remove redundant test:prepare script
- update dependencies (nuxt-auth API changes)

## 0.3.0

### General changes
Expand Down
50 changes: 25 additions & 25 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "v3",
"version": "0.3.0",
"version": "0.4.0",
"scripts": {
"build": "nuxt build",
"dev": "pnpm run prisma:generate && nuxt dev",
Expand All @@ -20,7 +20,6 @@
"changeset": "npx changeset",
"changeset:status": "npx changeset status --verbose",
"changeset:version": "npx changeset version",
"test:prepare": "pnpm prisma:db:push --force-reset && npx prisma db seed",
"test": "vitest",
"test:ui": "vitest --ui",
"test:watch": "vitest --watch",
Expand All @@ -31,38 +30,39 @@
"seed": "ts-node-dev -P tsconfig.server.json prisma/seed.ts"
},
"devDependencies": {
"@antfu/eslint-config": "0.38.3",
"@antfu/eslint-config": "0.39.0",
"@changesets/cli": "^2.26.1",
"@nuxt/devtools": "^0.3.1",
"@nuxt/test-utils": "^3.3.3",
"@nuxtjs/tailwindcss": "^6.6.5",
"@sidebase/nuxt-auth": "^0.4.4",
"@nuxt/devtools": "0.5.0",
"@nuxt/test-utils": "3.5.0",
"@nuxtjs/tailwindcss": "6.7.0",
"@sidebase/nuxt-auth": "^0.5.0",
"@types/node": "18.15.0",
"@vitejs/plugin-vue": "^4.1.0",
"@vitest/ui": "^0.29.8",
"@vitejs/plugin-vue": "4.2.3",
"@vitest/ui": "0.31.1",
"@vue/test-utils": "^2.3.2",
"autoprefixer": "^10.4.14",
"eslint": "8.37.0",
"jsdom": "^21.1.1",
"consola": "^3.1.0",
"eslint": "8.39.0",
"jsdom": "22.0.0",
"npm-check": "^6.0.1",
"nuxt": "3.3.3",
"postcss": "8.4.21",
"prisma": "4.12.0",
"nuxt": "3.5.0",
"postcss": "8.4.23",
"prisma": "4.14.1",
"ts-node-dev": "^2.0.0",
"typescript": "4.9.5",
"vitest": "^0.29.8",
"typescript": "5.0.4",
"vitest": "0.31.1",
"vitest-mock-extended": "^1.1.3",
"vue-tsc": "1.2.0"
"vue-tsc": "1.6.5"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.5",
"@prisma/client": "4.12.0",
"@trpc/client": "10.18.0",
"@trpc/server": "10.18.0",
"next-auth": "4.21.1",
"superjson": "1.12.2",
"trpc-nuxt": "0.8.0",
"ts-pattern": "4.2.2",
"@next-auth/prisma-adapter": "^1.0.6",
"@prisma/client": "4.14.1",
"@trpc/client": "10.27.0",
"@trpc/server": "10.27.0",
"next-auth": "4.22.1",
"superjson": "1.12.3",
"trpc-nuxt": "0.10.2",
"ts-pattern": "4.3.0",
"zod": "3.21.4"
}
}
2 changes: 1 addition & 1 deletion pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import { store } from '~~/store'
const { users, getUsers } = store()
const { status, data, signIn, signOut } = useSession()
const { status, data, signIn, signOut } = useAuth()
onMounted(async () => {
await getUsers()
Expand Down
Loading

0 comments on commit 4069917

Please sign in to comment.