@vue/component-compiler
Advanced tools
Comparing version 3.4.4 to 3.4.5
@@ -5,2 +5,12 @@ # Change Log | ||
<a name="3.4.5"></a> | ||
## [3.4.5](https://github.com/vuejs/vue-component-compiler/compare/v3.4.4...v3.4.5) (2018-08-28) | ||
### Bug Fixes | ||
* Do not generate style injector code if component has no style ([78a2da3](https://github.com/vuejs/vue-component-compiler/commit/78a2da3)) | ||
<a name="3.4.4"></a> | ||
@@ -7,0 +17,0 @@ ## [3.4.4](https://github.com/vuejs/vue-component-compiler/compare/v3.4.3...v3.4.4) (2018-07-31) |
@@ -277,5 +277,5 @@ "use strict"; | ||
/* style inject */ | ||
${!compiler.template.optimizeSSR ? createInjector : ''} | ||
${hasStyle && !compiler.template.optimizeSSR ? createInjector : ''} | ||
/* style inject SSR */ | ||
${compiler.template.optimizeSSR ? createInjectorSSR : ''} | ||
${hasStyle && compiler.template.optimizeSSR ? createInjectorSSR : ''} | ||
@@ -282,0 +282,0 @@ `; |
{ | ||
"name": "@vue/component-compiler", | ||
"version": "3.4.4", | ||
"version": "3.4.5", | ||
"description": "bundler agnostic API for compiling Vue SFC", | ||
@@ -5,0 +5,0 @@ "repository": { |
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
41451
14
614