vuetify-nuxt-module 1.0.0-alpha.6 → 1.0.0-beta.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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2023-PRESENT Joaquín Sánchez <https://github.com/userquin>
3
+ Copyright (c) 2023-PRESENT Vuetify, LLC <https://github.com/vuetifyjs>
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -92,4 +92,4 @@ The virtual modules can be found in [configuration.d.ts](https://github.com/vuet
92
92
 
93
93
  ## 📄 License
94
94
 
95
- [MIT](https://github.com/vuetifyjs/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 [Vuetify, LLC](https://github.com/vuetifyjs)
package/dist/module.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "compatibility": {
5
5
  "nuxt": ">=3.15.0"
6
6
  },
7
- "version": "1.0.0-alpha.6",
7
+ "version": "1.0.0-beta.1",
8
8
  "builder": {
9
9
  "@nuxt/module-builder": "1.0.2",
10
10
  "unbuild": "3.6.1"
package/dist/module.mjs CHANGED
@@ -18,7 +18,7 @@ import process from 'node:process';
18
18
  import { createConfigLoader } from 'unconfig';
19
19
  import { createHash } from 'node:crypto';
20
20
 
21
- const version = "1.0.0-alpha.6";
21
+ const version = "1.0.0-beta.1";
22
22
 
23
23
  const VIRTUAL_VUETIFY_CONFIGURATION = "virtual:vuetify-configuration";
24
24
  const RESOLVED_VIRTUAL_VUETIFY_CONFIGURATION = `\0${VIRTUAL_VUETIFY_CONFIGURATION}`;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "vuetify-nuxt-module",
3
3
  "type": "module",
4
- "version": "1.0.0-alpha.6",
4
+ "version": "1.0.0-beta.1",
5
5
  "description": "Zero-Config Nuxt Module for Vuetify",
6
6
  "author": "userquin <userquin@gmail.com>",
7
7
  "license": "MIT",
@@ -134,7 +134,7 @@
134
134
  "dev:prepare:date-io": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare ../../apps/date-io-playground",
135
135
  "dev:date-io": "pnpm -C ../../apps/date-io-playground dev",
136
136
  "docs:dev": "pnpm -C ../../docs run dev",
137
- "docs:build": "nuxt-module-build prepare && pnpm -C ../../docs run build",
137
+ "docs:build": "pnpm -C ../../docs run build",
138
138
  "docs:serve": "pnpm -C ../../docs run serve",
139
139
  "lint": "eslint .",
140
140
  "lint:fix": "nr lint --fix",