Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: nuxt-modules/supabase
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.3.2
Choose a base ref
...
head repository: nuxt-modules/supabase
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.3.3
Choose a head ref
  • 2 commits
  • 3 files changed
  • 1 contributor

Commits on Jul 10, 2024

  1. fix(vite): optimize order

    larbish committed Jul 10, 2024
    Copy the full SHA
    663bd73 View commit details
  2. chore(release): release v1.3.3

    larbish committed Jul 10, 2024
    Copy the full SHA
    d6ebb10 View commit details
Showing with 9 additions and 2 deletions.
  1. +7 −0 CHANGELOG.md
  2. +1 −1 package.json
  3. +1 −1 src/module.ts
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@


## [1.3.3](https://github.com/nuxt-community/supabase-module/compare/v1.3.2...v1.3.3) (2024-07-10)


### Bug Fixes

* **vite:** optimize order ([663bd73](https://github.com/nuxt-community/supabase-module/commit/663bd73ebb146ecde1abe5f29b52326e6dc2b6cd))

## [1.3.2](https://github.com/nuxt-community/supabase-module/compare/v1.3.1...v1.3.2) (2024-07-05)


2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nuxtjs/supabase",
"version": "1.3.2",
"version": "1.3.3",
"description": "Supabase module for Nuxt",
"repository": {
"type": "git",
2 changes: 1 addition & 1 deletion src/module.ts
Original file line number Diff line number Diff line change
@@ -224,7 +224,7 @@ export default defineNuxtModule<ModuleOptions>({
extendViteConfig((config) => {
config.optimizeDeps = config.optimizeDeps || {}
config.optimizeDeps.include = config.optimizeDeps.include || []
config.optimizeDeps.include.push('cookie', '@supabase/postgrest-js')
config.optimizeDeps.include.push('@nuxtjs/supabase > cookie', '@nuxtjs/supabase > @supabase/postgrest-js')
})
},
})