diff --git a/CHANGELOG.md b/CHANGELOG.md index be886b7b4..84ce6ea2d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## [17.2.2](https://github.com/vuejs/vue-loader/compare/v17.2.1...v17.2.2) (2023-06-02) + + +### Bug Fixes + +* windows path for `experiments.css` ([#2049](https://github.com/vuejs/vue-loader/issues/2049)) ([f3f45df](https://github.com/vuejs/vue-loader/commit/f3f45df925bcd80307232e7410ead355f87953d3)) + + + ## [17.2.1](https://github.com/vuejs/vue-loader/compare/v17.1.2...v17.2.1) (2023-06-01) diff --git a/package.json b/package.json index 0899b137e..315b624b8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vue-loader", - "version": "17.2.2", + "version": "17.3.0", "license": "MIT", "author": "Evan You", "repository": "vuejs/vue-loader", diff --git a/src/pluginWebpack4.ts b/src/pluginWebpack4.ts index 335a6a0a9..3745fad64 100644 --- a/src/pluginWebpack4.ts +++ b/src/pluginWebpack4.ts @@ -86,7 +86,10 @@ class VueLoaderPlugin { const parsed = qs.parse(query.slice(1)) return parsed.vue != null && parsed.type === 'template' }, - options: vueLoaderOptions, + options: { + ident: vueLoaderUse.ident, + ...vueLoaderOptions, + }, } // for each rule that matches plain .js/.ts files, also create a clone and diff --git a/src/stylePostLoader.ts b/src/stylePostLoader.ts index 544924ea6..59c664d5b 100644 --- a/src/stylePostLoader.ts +++ b/src/stylePostLoader.ts @@ -9,6 +9,18 @@ const { compileStyle } = compiler // for any