@nuxt/app-edge
Advanced tools
Comparing version 2.3.0-25676455.1adad46 to 2.3.0-25677645.208eba3
@@ -6,3 +6,3 @@ # Change Log | ||
# 2.3.0 (2018-10-26) | ||
# 2.3.0 (2018-10-27) | ||
@@ -15,4 +15,5 @@ | ||
* **app:** throw an error when layout property is not string ([#4142](https://github.com/nuxt/nuxt.js/issues/4142)) ([f5530ad](https://github.com/nuxt/nuxt.js/commit/f5530ad)) | ||
* remove extra text ([#4187](https://github.com/nuxt/nuxt.js/issues/4187)) ([972c3a7](https://github.com/nuxt/nuxt.js/commit/972c3a7)) | ||
* **app:** Throw error only if value is undefined ([#4206](https://github.com/nuxt/nuxt.js/issues/4206)) ([208eba3](https://github.com/nuxt/nuxt.js/commit/208eba3)) | ||
* **publish:** set each package's publishConfig to public ([28b246d](https://github.com/nuxt/nuxt.js/commit/28b246d)), closes [lerna/lerna#178](https://github.com/lerna/lerna/issues/178) | ||
* remove extra text ([#4187](https://github.com/nuxt/nuxt.js/issues/4187)) ([972c3a7](https://github.com/nuxt/nuxt.js/commit/972c3a7)) | ||
@@ -19,0 +20,0 @@ |
/*! | ||
* @nuxt/app-edge v2.3.0-25676455.1adad46 (c) 2016-2018 | ||
* @nuxt/app-edge v2.3.0-25677645.208eba3 (c) 2016-2018 | ||
@@ -17,3 +17,3 @@ * - All the amazing contributors | ||
var name = "@nuxt/app-edge"; | ||
var version = "2.3.0-25676455.1adad46"; | ||
var version = "2.3.0-25677645.208eba3"; | ||
var repository = "nuxt/nuxt.js"; | ||
@@ -20,0 +20,0 @@ var license = "MIT"; |
{ | ||
"name": "@nuxt/app-edge", | ||
"version": "2.3.0-25676455.1adad46", | ||
"version": "2.3.0-25677645.208eba3", | ||
"repository": "nuxt/nuxt.js", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -133,3 +133,3 @@ import Vue from 'vue' | ||
if (!key) throw new Error('inject(key, value) has no key provided') | ||
if (!value) throw new Error('inject(key, value) has no value provided') | ||
if (typeof value === 'undefined') throw new Error('inject(key, value) has no value provided') | ||
key = '$' + key | ||
@@ -136,0 +136,0 @@ // Add into app |
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
109297