Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

vue

Package Overview
Dependencies
Maintainers
1
Versions
530
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue - npm Package Compare versions

Comparing version 0.12.13 to 0.12.14

2

package.json
{
"name": "vue",
"version": "0.12.13",
"version": "0.12.14",
"author": "Evan You <yyx990803@gmail.com>",

@@ -5,0 +5,0 @@ "license": "MIT",

<p align="center"><a href="http://vuejs.org" target="_blank"><img width="100"src="http://vuejs.org/images/logo.png"></a></p>
<p align="center">
<a href="https://circleci.com/gh/yyx990803/vue/tree/master"><img src="https://img.shields.io/circleci/project/yyx990803/vue/master.svg" alt="Build Status"></a>
<a href="https://codecov.io/github/yyx990803/vue?branch=master"><img src="https://img.shields.io/codecov/c/github/yyx990803/vue/master.svg" alt="Coverage Status"></a>
<a href="https://circleci.com/gh/yyx990803/vue/tree/master"><img src="https://circleci.com/gh/yyx990803/vue/tree/master.svg?style=shield" alt="Build Status"></a>
<a href="https://codecov.io/github/yyx990803/vue?branch=master"><img src="https://codecov.io/github/yyx990803/vue/coverage.svg?branch=dev" alt="Coverage Status"></a>
<a href="https://www.bithound.io/github/yyx990803/vue"><img src="https://www.bithound.io/github/yyx990803/vue/badges/score.svg" alt="bitHound Score"></a>
<br>
<a href="https://www.npmjs.com/package/vue"><img src="https://img.shields.io/npm/dm/vue.svg" alt="NPM Downloads"></a>
<a href="http://issuestats.com/github/yyx990803/vue"><img src="http://issuestats.com/github/yyx990803/vue/badge/issue?style=flat"></a>
<a href="https://gitter.im/yyx990803/vue"><img src="https://badges.gitter.im/Join Chat.svg"></a>
</p>

@@ -26,3 +26,3 @@

For questions and support please use the Gitter room: [![Gitter](https://badges.gitter.im/Join Chat.svg)](https://gitter.im/yyx990803/vue) or submit issues at [vuejs/Discussion](https://github.com/vuejs/Discussion/issues). The issue list of this repo is **exclusively** for bug reports and feature requests.
For questions and support please use the [Gitter chat room](https://gitter.im/yyx990803/vue) or submit issues at [vuejs/Discussion](https://github.com/vuejs/Discussion/issues). The issue list of this repo is **exclusively** for bug reports and feature requests.

@@ -29,0 +29,0 @@ ## Issues

@@ -85,3 +85,3 @@ var _ = require('../util')

getContainedComponents: function () {
var vm = this.vm
var vm = this._host || this.vm
var start = this.start.nextSibling

@@ -88,0 +88,0 @@ var end = this.end

@@ -101,3 +101,9 @@ var _ = require('../../util')

if (option !== defaultOption) {
el.removeChild(option)
var parentNode = option.parentNode
if (parentNode === el) {
parentNode.removeChild(option)
} else {
el.removeChild(parentNode)
i = el.options.length
}
}

@@ -104,0 +110,0 @@ }

@@ -60,9 +60,2 @@ var _ = require('../util')

ob = new Observer(value)
} else if (process.env.NODE_ENV !== 'production') {
if (_.isObject(value) && !_.isArray(value) && !_.isPlainObject(value)) {
_.warn(
'Unobservable object found in data: ' +
Object.prototype.toString.call(value)
)
}
}

@@ -69,0 +62,0 @@ if (ob && vm) {

/**
* Check is a string starts with $ or _
* Check if a string starts with $ or _
*

@@ -4,0 +4,0 @@ * @param {String} str

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

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