New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

vueify

Package Overview
Dependencies
Maintainers
1
Versions
58
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vueify - npm Package Compare versions

Comparing version 1.1.2 to 1.1.3

4

package.json
{
"name": "vueify",
"version": "1.1.2",
"version": "1.1.3",
"description": "Vue component transform for Browserify",

@@ -22,3 +22,3 @@ "main": "index.js",

"through": "^2.3.6",
"vue-component-compiler": "^1.1.2"
"vue-component-compiler": "^1.1.5"
},

@@ -25,0 +25,0 @@ "peerDependencies": {

@@ -83,3 +83,3 @@ # vueify

Currently supported preprocessors are:
These are the built-in preprocessors:

@@ -94,2 +94,25 @@ - stylus

## Registering Custom Pre-Processors
Create a `vue.config.js` file at where your build command is run (usually y the root level of your project):
``` js
module.exports = function (compiler) {
// register a compile function for <script lang="es">
compiler.register({
lang: 'es',
type: 'script',
compile: function (content, cb) {
// transform the content...
cb(null, content)
}
})
}
```
## Syntax Highlighting
And here's a [SublimeText package](https://github.com/vuejs/vue-syntax-highlight) for enabling language highlighting/support in these embbeded code blocks.

@@ -96,0 +119,0 @@

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