vue-loader
Advanced tools
Comparing version 16.2.0 to 16.3.0
@@ -0,1 +1,10 @@ | ||
# [16.3.0](https://github.com/vuejs/vue-loader/compare/v16.2.0...v16.3.0) (2021-06-29) | ||
### Features | ||
* pass on compilerOptions and refSugar when using `<script setup>` ([7137294](https://github.com/vuejs/vue-loader/commit/7137294e7eca465c27c03a43057cb6a8f80ea2d7)) | ||
# [16.2.0](https://github.com/vuejs/vue-loader/compare/v16.1.2...v16.2.0) (2021-03-26) | ||
@@ -10,2 +19,11 @@ | ||
# [16.2.0](https://github.com/vuejs/vue-loader/compare/v16.1.2...v16.2.0) (2021-03-26) | ||
### Features | ||
* enable :slotted usage detection ([66a3759](https://github.com/vuejs/vue-loader/commit/66a3759c052fa75485243d91c22243ee35610089)) | ||
## [16.1.2](https://github.com/vuejs/vue-loader/compare/v16.1.1...v16.1.2) (2020-12-17) | ||
@@ -12,0 +30,0 @@ |
@@ -10,2 +10,3 @@ import webpack = require('webpack'); | ||
compilerOptions?: CompilerOptions; | ||
refSugar?: boolean; | ||
hotReload?: boolean; | ||
@@ -12,0 +13,0 @@ exposeFilename?: boolean; |
@@ -46,6 +46,8 @@ "use strict"; | ||
inlineTemplate: enableInline, | ||
refSugar: options.refSugar, | ||
babelParserPlugins: options.babelParserPlugins, | ||
templateOptions: { | ||
ssr: isServer, | ||
compiler, | ||
ssr: isServer, | ||
compilerOptions: options.compilerOptions, | ||
transformAssetUrls: options.transformAssetUrls || true, | ||
@@ -52,0 +54,0 @@ }, |
{ | ||
"name": "vue-loader", | ||
"version": "16.2.0", | ||
"version": "16.3.0", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "author": "Evan You", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
63912
1047