Skip to content

Commit 44d3016

Browse files
committed
1 parent a64f0c1 commit 44d3016

File tree

6 files changed

+41
-5
lines changed

6 files changed

+41
-5
lines changed

packages/shared/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
### [1.5.1](https://github.com/vuetifyjs/vuetify-loader/compare/@vuetify/[email protected]...@vuetify/[email protected]) (2022-07-23)
7+
8+
9+
### Bug Fixes
10+
11+
* add vue and upath to dependencies ([ac5af82](https://github.com/vuetifyjs/vuetify-loader/commit/ac5af823f1bfd8bc79dc3eb353eed64adef34421)), closes [#242](https://github.com/vuetifyjs/vuetify-loader/issues/242)
12+
* resolve vuetify relative to cwd ([9bf71d4](https://github.com/vuetifyjs/vuetify-loader/commit/9bf71d4fd8596cf8333e3041f4307a851c7aba6a)), closes [#248](https://github.com/vuetifyjs/vuetify-loader/issues/248)
13+
14+
15+
616
## [1.5.0](https://github.com/vuetifyjs/vuetify-loader/compare/@vuetify/[email protected]...@vuetify/[email protected]) (2022-06-16)
717

818

packages/shared/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuetify/loader-shared",
3-
"version": "1.5.0",
3+
"version": "1.5.1",
44
"main": "dist/index.js",
55
"types": "dist/index.d.ts",
66
"repository": {

packages/vite-plugin/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [1.0.0-alpha.13](https://github.com/vuetifyjs/vuetify-loader/compare/[email protected]@1.0.0-alpha.13) (2022-07-23)
7+
8+
9+
### Bug Fixes
10+
11+
* add vue and upath to dependencies ([ac5af82](https://github.com/vuetifyjs/vuetify-loader/commit/ac5af823f1bfd8bc79dc3eb353eed64adef34421)), closes [#242](https://github.com/vuetifyjs/vuetify-loader/issues/242)
12+
* allow vite 3 ([a64f0c1](https://github.com/vuetifyjs/vuetify-loader/commit/a64f0c15ba71dbd5a323091328be50f70133724a)), closes [#256](https://github.com/vuetifyjs/vuetify-loader/issues/256)
13+
* cache importers invalidation on Windows ([#255](https://github.com/vuetifyjs/vuetify-loader/issues/255)) ([ab0c22d](https://github.com/vuetifyjs/vuetify-loader/commit/ab0c22d1fb5d560686b8533e825290a413178b7c))
14+
* load virtual requests with `?v=` query string ([#252](https://github.com/vuetifyjs/vuetify-loader/issues/252)) ([21bca2f](https://github.com/vuetifyjs/vuetify-loader/commit/21bca2f3c658168c371e850a8b6b1acc9757a0cf))
15+
* passthrough sourcemaps ([dfdc815](https://github.com/vuetifyjs/vuetify-loader/commit/dfdc815ad175df9ffd8be5c4847d8fe29e442f39)), closes [#233](https://github.com/vuetifyjs/vuetify-loader/issues/233)
16+
* resolve vuetify relative to cwd ([9bf71d4](https://github.com/vuetifyjs/vuetify-loader/commit/9bf71d4fd8596cf8333e3041f4307a851c7aba6a)), closes [#248](https://github.com/vuetifyjs/vuetify-loader/issues/248)
17+
* skip certain files in pendingModules, timeout per file ([1543182](https://github.com/vuetifyjs/vuetify-loader/commit/15431824d3c7ee0bf6314822476c57d1be0448ee)), closes [#249](https://github.com/vuetifyjs/vuetify-loader/issues/249)
18+
* use default export ([c5e01f5](https://github.com/vuetifyjs/vuetify-loader/commit/c5e01f5b0b1f018800be9b4e1a0cd2501a6f2a57)), closes [#227](https://github.com/vuetifyjs/vuetify-loader/issues/227)
19+
20+
21+
622
## [1.0.0-alpha.12](https://github.com/vuetifyjs/vuetify-loader/compare/[email protected]@1.0.0-alpha.12) (2022-06-16)
723

824

packages/vite-plugin/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vite-plugin-vuetify",
3-
"version": "1.0.0-alpha.12",
3+
"version": "1.0.0-alpha.13",
44
"description": "A Vite plugin for treeshaking Vuetify components and more",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -19,7 +19,7 @@
1919
},
2020
"homepage": "https://github.com/vuetifyjs/vuetify-loader/packages/vite-plugin",
2121
"dependencies": {
22-
"@vuetify/loader-shared": "^1.5.0",
22+
"@vuetify/loader-shared": "^1.5.1",
2323
"debug": "^4.3.3",
2424
"upath": "^2.0.1"
2525
},

packages/webpack-plugin/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.0.0-alpha.12](https://github.com/vuetifyjs/vuetify-loader/compare/[email protected]@2.0.0-alpha.12) (2022-07-23)
7+
8+
9+
### Bug Fixes
10+
11+
* add vue and upath to dependencies ([ac5af82](https://github.com/vuetifyjs/vuetify-loader/commit/ac5af823f1bfd8bc79dc3eb353eed64adef34421)), closes [#242](https://github.com/vuetifyjs/vuetify-loader/issues/242)
12+
* resolve vuetify relative to cwd ([9bf71d4](https://github.com/vuetifyjs/vuetify-loader/commit/9bf71d4fd8596cf8333e3041f4307a851c7aba6a)), closes [#248](https://github.com/vuetifyjs/vuetify-loader/issues/248)
13+
14+
15+
616
## [2.0.0-alpha.11](https://github.com/vuetifyjs/vuetify-loader/compare/[email protected]@2.0.0-alpha.11) (2022-06-16)
717

818

packages/webpack-plugin/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "webpack-plugin-vuetify",
3-
"version": "2.0.0-alpha.11",
3+
"version": "2.0.0-alpha.12",
44
"description": "A Webpack plugin for treeshaking Vuetify components and more",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -19,7 +19,7 @@
1919
},
2020
"homepage": "https://github.com/vuetifyjs/vuetify-loader/packages/webpack-plugin",
2121
"dependencies": {
22-
"@vuetify/loader-shared": "^1.5.0",
22+
"@vuetify/loader-shared": "^1.5.1",
2323
"decache": "^4.6.0",
2424
"file-loader": "^6.2.0",
2525
"find-cache-dir": "^3.3.2",

0 commit comments

Comments
 (0)