vuetify-nuxt-module 0.17.0 → 0.17.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  <div align="center">
2
2
  <picture>
3
- <source media="(prefers-color-scheme: dark)" srcset="https://github.com/userquin/vuetify-nuxt-module/raw/main/hero-dark.svg" />
4
- <img alt="vuetify-nuxt-module - Zero-config Nuxt Module for Vuetify" src='https://github.com/userquin/vuetify-nuxt-module/raw/main/hero.svg' alt="vuetify-nuxt-module - Zero-config Nuxt Module for Vuetify"><br>
3
+ <source media="(prefers-color-scheme: dark)" srcset="https://github.com/vuetifyjs/nuxt-module/raw/main/hero-dark.svg" />
4
+ <img alt="vuetify-nuxt-module - Zero-config Nuxt Module for Vuetify" src='https://github.com/vuetifyjs/nuxt-module/raw/main/hero.svg' alt="vuetify-nuxt-module - Zero-config Nuxt Module for Vuetify"><br>
5
5
  </picture>
6
6
  <p>Zero-config Nuxt Module for Vuetify</p>
7
7
  </div>
@@ -13,11 +13,11 @@
13
13
  <a href="https://www.npmjs.com/package/vuetify-nuxt-module" target="__blank">
14
14
  <img alt="NPM Downloads" src="https://img.shields.io/npm/dm/vuetify-nuxt-module?color=476582&label=">
15
15
  </a>
16
- <a href="https://vuetify-nuxt-module.netlify.app/" target="__blank">
16
+ <a href="https://nuxt.vuetifyjs.com/" target="__blank">
17
17
  <img src="https://img.shields.io/static/v1?label=&message=docs%20%26%20guides&color=2e859c" alt="Docs & Guides">
18
18
  </a>
19
19
  <br>
20
- <a href="https://github.com/userquin/vuetify-nuxt-module" target="__blank">
20
+ <a href="https://github.com/vuetifyjs/nuxt-module" target="__blank">
21
21
  <img alt="GitHub stars" src="https://img.shields.io/github/stars/userquin/vuetify-nuxt-module?style=social">
22
22
  </a>
23
23
  </p>
@@ -26,7 +26,7 @@
26
26
 
27
27
  ## 🚀 Features
28
28
 
29
- - 📖 [**Documentation & guides**](https://vuetify-nuxt-module.netlify.app/)
29
+ - 📖 [**Documentation & guides**](https://nuxt.vuetifyjs.com/)
30
30
  - 👌 **Zero-Config**: sensible built-in default [Vuetify](https://vuetifyjs.com/) configuration for common use cases
31
31
  - 🔌 **Extensible**: expose the ability to customize the Vuetify configuration via [Nuxt Runtime Hooks](https://nuxt.com/docs/guide/going-further/hooks#usage-with-plugins)
32
32
  - ⚡ **Fully Tree Shakable**: by default, only the needed Vuetify components are imported
@@ -82,14 +82,14 @@ export default defineNuxtConfig({
82
82
  })
83
83
  ```
84
84
 
85
- Read the [📖 documentation](https://vuetify-nuxt-module.netlify.app/) for a complete guide on how to configure and use this module.
85
+ Read the [📖 documentation](https://nuxt.vuetifyjs.com/) for a complete guide on how to configure and use this module.
86
86
 
87
87
  ## 👀 Full config
88
88
 
89
- Check out the [types](https://github.com/userquin/vuetify-nuxt-module/blob/main/src/types.ts).
89
+ Check out the [types](https://github.com/vuetifyjs/nuxt-module/blob/main/src/types.ts).
90
90
 
91
- The virtual modules can be found in [configuration.d.ts](https://github.com/userquin/vuetify-nuxt-module/blob/main/configuration.d.ts) file.
91
+ The virtual modules can be found in [configuration.d.ts](https://github.com/vuetifyjs/nuxt-module/blob/main/configuration.d.ts) file.
92
92
 
93
93
  ## 📄 License
94
94
 
95
- [MIT](https://github.com/userquin/vuetify-nuxt-module/blob/main/LICENSE) License &copy; 2023-PRESENT [Joaquín Sánchez](https://github.com/userquin)
95
+ [MIT](https://github.com/vuetifyjs/nuxt-module/blob/main/LICENSE) License &copy; 2023-PRESENT [Joaquín Sánchez](https://github.com/userquin)
package/dist/module.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "nuxt": ">=3.9.0",
6
6
  "bridge": false
7
7
  },
8
- "version": "0.17.0",
8
+ "version": "0.17.1",
9
9
  "builder": {
10
10
  "@nuxt/module-builder": "0.8.3",
11
11
  "unbuild": "2.0.0"
package/dist/module.mjs CHANGED
@@ -14,7 +14,7 @@ import { pathToFileURL } from 'node:url';
14
14
  import { parseQuery, parseURL } from 'ufo';
15
15
  import destr from 'destr';
16
16
 
17
- const version = "0.17.0";
17
+ const version = "0.17.1";
18
18
 
19
19
  const VIRTUAL_VUETIFY_CONFIGURATION = "virtual:vuetify-configuration";
20
20
  const RESOLVED_VIRTUAL_VUETIFY_CONFIGURATION = `\0${VIRTUAL_VUETIFY_CONFIGURATION}`;
package/package.json CHANGED
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "name": "vuetify-nuxt-module",
3
3
  "type": "module",
4
- "version": "0.17.0",
4
+ "version": "0.17.1",
5
5
  "packageManager": "pnpm@9.7.1",
6
6
  "description": "Zero-Config Nuxt Module for Vuetify",
7
7
  "author": "userquin <userquin@gmail.com>",
8
8
  "license": "MIT",
9
- "homepage": "https://github.com/userquin/vuetify-nuxt-module#readme",
9
+ "homepage": "https://github.com/vuetifyjs/nuxt-module#readme",
10
10
  "repository": {
11
11
  "type": "git",
12
- "url": "https://github.com/userquin/vuetify-nuxt-module.git"
12
+ "url": "https://github.com/vuetifyjs/nuxt-module.git"
13
13
  },
14
- "bugs": "https://github.com/userquin/vuetify-nuxt-module/issues",
14
+ "bugs": "https://github.com/vuetifyjs/nuxt-module/issues",
15
15
  "keywords": [
16
16
  "nuxt",
17
17
  "nuxt 3",