Socket
Socket
Sign inDemoInstall

vue-inbrowser-compiler-utils

Package Overview
Dependencies
Maintainers
3
Versions
51
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue-inbrowser-compiler-utils - npm Package Compare versions

Comparing version 4.62.1 to 4.64.1

lib/adaptCreateElement.test.vue3.d.ts

9

CHANGELOG.md
# Change Log
## 4.64.1
### Patch Changes
- [#1513](https://github.com/vue-styleguidist/vue-styleguidist/pull/1513) [`1b178cad`](https://github.com/vue-styleguidist/vue-styleguidist/commit/1b178cad6a4d2f3e55bc8221f3a344c0031be908) Thanks [@elevatebart](https://github.com/elevatebart)! - fix preprocessing of script setup
- Updated dependencies [[`1b178cad`](https://github.com/vue-styleguidist/vue-styleguidist/commit/1b178cad6a4d2f3e55bc8221f3a344c0031be908)]:
- vue-inbrowser-compiler-independent-utils@4.64.1
## 4.62.1

@@ -4,0 +13,0 @@

2

lib/vue-inbrowser-compiler-utils.cjs.js

@@ -163,3 +163,3 @@ 'use strict';

const parts = vueInbrowserCompilerDemi.parseComponent(code);
return !!parts.script || !!parts.template;
return !!parts.script || !!parts.scriptSetup || !!parts.template;
}

@@ -166,0 +166,0 @@

@@ -156,3 +156,3 @@ import { isVue3, parseComponent, compileScript, compileTemplate } from 'vue-inbrowser-compiler-demi';

const parts = parseComponent(code);
return !!parts.script || !!parts.template;
return !!parts.script || !!parts.scriptSetup || !!parts.template;
}

@@ -159,0 +159,0 @@

{
"name": "vue-inbrowser-compiler-utils",
"version": "4.62.1",
"version": "4.64.1",
"description": "use this with vue-inbrowser-compiler to allow jsx compilation",

@@ -18,3 +18,3 @@ "module": "lib/vue-inbrowser-compiler-utils.esm.js",

"vue-inbrowser-compiler-demi": "^4.56.5",
"vue-inbrowser-compiler-independent-utils": "^4.62.0"
"vue-inbrowser-compiler-independent-utils": "^4.64.1"
},

@@ -21,0 +21,0 @@ "devDependencies": {

@@ -10,3 +10,3 @@ import { parseComponent } from 'vue-inbrowser-compiler-demi'

const parts = parseComponent(code)
return !!parts.script || !!parts.template
return !!parts.script || !!parts.scriptSetup || !!parts.template
}

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc