Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [0.1.25](https://github.com/nuxt-community/supabase-module/compare/v0.1.24...v0.1.25) (2022-09-05)

### [0.1.24](https://github.com/nuxt-community/supabase-module/compare/v0.1.23...v0.1.24) (2022-09-05)


### Bug Fixes

* update nuxt compatibility ([#70](https://github.com/nuxt-community/supabase-module/issues/70)) ([3c753af](https://github.com/nuxt-community/supabase-module/commit/3c753af2150fe666d59112c4f1d42a431ce4bd83))

### [0.1.23](https://github.com/nuxt-community/supabase-module/compare/v0.1.22...v0.1.23) (2022-08-16)


Expand Down
2 changes: 1 addition & 1 deletion docs/content/_theme.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ url: "https://supabase.nuxtjs.org/"
description: Supabase integration for Nuxt.

socials:
github: "nuxt-community/supabase-module"
github: "nuxt-modules/supabase"
twitter: "nuxt_js"
supabase:
label: Supabase
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nuxtjs/supabase",
"version": "0.1.23",
"version": "0.1.25",
"description": "Supabase module for Nuxt",
"repository": "nuxt-community/supabase-module",
"license": "MIT",
Expand All @@ -25,7 +25,7 @@
"release": "yarn lint && standard-version && git push --follow-tags"
},
"dependencies": {
"@nuxt/kit": "^3.0.0-rc.8",
"@nuxt/kit": "^3.0.0-rc.9",
"@supabase/supabase-js": "^1.35.6",
"defu": "^6.0.0",
"pathe": "^0.3.4"
Expand All @@ -34,7 +34,7 @@
"@nuxt/module-builder": "^0.1.7",
"@nuxtjs/eslint-config-typescript": "^10.0.0",
"eslint": "^8.22.0",
"nuxt": "^3.0.0-rc.8",
"nuxt": "^3.0.0-rc.9",
"standard-version": "^9.5.0"
}
}
4 changes: 2 additions & 2 deletions src/module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export default defineNuxtModule<ModuleOptions>({
name: '@nuxtjs/supabase',
configKey: 'supabase',
compatibility: {
nuxt: '^3.0.0'
nuxt: '^3.0.0-rc.8'
}
},
defaults: {
Expand Down Expand Up @@ -129,7 +129,7 @@ export default defineNuxtModule<ModuleOptions>({
})

// Add supabase composables
nuxt.hook('autoImports:dirs', (dirs) => {
nuxt.hook('imports:dirs', (dirs) => {
dirs.push(resolve(runtimeDir, 'composables'))
})

Expand Down
Loading