@vue/component-compiler-utils
Advanced tools
Comparing version 3.1.0 to 3.1.1
@@ -0,1 +1,5 @@ | ||
## [3.1.1](https://github.com/vuejs/component-compiler-utils/compare/v3.1.0...v3.1.1) (2020-01-06) | ||
# [3.1.0](https://github.com/vuejs/component-compiler-utils/compare/v3.0.2...v3.1.0) (2019-12-08) | ||
@@ -2,0 +6,0 @@ |
@@ -11,7 +11,7 @@ "use strict"; | ||
function compileStyle(options) { | ||
return doCompileStyle(Object.assign({}, options, { isAsync: false })); | ||
return doCompileStyle(Object.assign(Object.assign({}, options), { isAsync: false })); | ||
} | ||
exports.compileStyle = compileStyle; | ||
function compileStyleAsync(options) { | ||
return Promise.resolve(doCompileStyle(Object.assign({}, options, { isAsync: true }))); | ||
return Promise.resolve(doCompileStyle(Object.assign(Object.assign({}, options), { isAsync: true }))); | ||
} | ||
@@ -32,3 +32,3 @@ exports.compileStyleAsync = compileStyleAsync; | ||
} | ||
const postCSSOptions = Object.assign({}, postcssOptions, { to: filename, from: filename }); | ||
const postCSSOptions = Object.assign(Object.assign({}, postcssOptions), { to: filename, from: filename }); | ||
if (map) { | ||
@@ -35,0 +35,0 @@ postCSSOptions.map = { |
{ | ||
"name": "@vue/component-compiler-utils", | ||
"version": "3.1.0", | ||
"version": "3.1.1", | ||
"description": "Lower level utilities for compiling Vue single file components", | ||
@@ -64,3 +64,3 @@ "main": "dist/index.js", | ||
"postcss": "^7.0.14", | ||
"postcss-selector-parser": "^5.0.0", | ||
"postcss-selector-parser": "^6.0.2", | ||
"prettier": "^1.18.2", | ||
@@ -67,0 +67,0 @@ "source-map": "~0.6.1", |
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
71328
+ Addedcssesc@3.0.0(transitive)
+ Addedpostcss-selector-parser@6.1.2(transitive)
+ Addedutil-deprecate@1.0.2(transitive)
- Removedcssesc@2.0.0(transitive)
- Removedindexes-of@1.0.1(transitive)
- Removedpostcss-selector-parser@5.0.0(transitive)
- Removeduniq@1.0.1(transitive)