vue-inbrowser-compiler-utils
Advanced tools
Comparing version 4.23.3 to 4.27.0
@@ -6,2 +6,10 @@ # Change Log | ||
# [4.27.0](https://github.com/vue-styleguidist/vue-styleguidist/compare/v4.26.3...v4.27.0) (2020-07-17) | ||
**Note:** Version bump only for package vue-inbrowser-compiler-utils | ||
## [4.23.3](https://github.com/vue-styleguidist/vue-styleguidist/compare/v4.23.2...v4.23.3) (2020-05-20) | ||
@@ -8,0 +16,0 @@ |
{ | ||
"name": "vue-inbrowser-compiler-utils", | ||
"version": "4.23.3", | ||
"version": "4.27.0", | ||
"description": "use this with vue-inbrowser-compiler to allow jsx compilation", | ||
@@ -33,3 +33,3 @@ "module": "lib/vue-inbrowser-compiler-utils.esm.js", | ||
"license": "MIT", | ||
"gitHead": "4e15cb68b0fb1eff86c9abde6daa9b0e89db824c" | ||
"gitHead": "d0be3dbdc528c18ff68721317700a35e450e4929" | ||
} |
@@ -61,3 +61,3 @@ const camelCase = require('camelcase') | ||
): ((...argz: any[]) => void) => | ||
function(this: any, ...argzMain: any[]) { | ||
function (this: any, ...argzMain: any[]) { | ||
fn1 && fn1.apply(this, argzMain) | ||
@@ -64,0 +64,0 @@ fn2 && fn2.apply(this, argzMain) |
@@ -8,3 +8,3 @@ /* eslint-disable no-control-regex */ | ||
// `after` is going to contain eithe a comma or an opening curly bracket | ||
css = css.replace(re, function(full, selector, after) { | ||
css = css.replace(re, function (full, selector, after) { | ||
// if non-rule delimiter | ||
@@ -25,3 +25,3 @@ if (selector.match(/^\s*(@media|@keyframes|to|from|@font-face)/)) { | ||
if (selector && selector.match(/:scope/)) { | ||
selector = selector.replace(/([^\s]*):scope/, function(full: string, cutSelector: string) { | ||
selector = selector.replace(/([^\s]*):scope/, function (full: string, cutSelector: string) { | ||
if (cutSelector === '') { | ||
@@ -28,0 +28,0 @@ return '> *' |
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
44822