rollup-plugin-vue
Advanced tools
Comparing version 4.7.1 to 4.7.2
@@ -5,2 +5,12 @@ # Change Log | ||
<a name="4.7.2"></a> | ||
## [4.7.2](https://github.com/vuejs/rollup-plugin-vue/compare/v4.7.1...v4.7.2) (2019-02-20) | ||
### Bug Fixes | ||
* Add needMap option to disable source maps ([3f879f3](https://github.com/vuejs/rollup-plugin-vue/commit/3f879f3)) | ||
<a name="4.7.1"></a> | ||
@@ -7,0 +17,0 @@ ## [4.7.1](https://github.com/vuejs/rollup-plugin-vue/compare/v4.7.0...v4.7.1) (2019-02-05) |
@@ -123,2 +123,2 @@ import { ScriptOptions, StyleOptions, TemplateOptions, DescriptorCompileResult } from '@vue/component-compiler'; | ||
*/ | ||
export default function vue(opts?: VuePluginOptions): Plugin; | ||
export default function vue(opts?: Partial<VuePluginOptions>): Plugin; |
@@ -228,3 +228,3 @@ 'use strict'; | ||
sourceRoot: opts.sourceRoot, | ||
needMap: true | ||
needMap: 'needMap' in opts ? opts.needMap : true | ||
}))); | ||
@@ -231,0 +231,0 @@ descriptors.set(filename, descriptor); |
{ | ||
"name": "rollup-plugin-vue", | ||
"version": "4.7.1", | ||
"version": "4.7.2", | ||
"description": "Roll .vue files", | ||
@@ -5,0 +5,0 @@ "author": "Rahul Kadyan <hi@znck.me>", |
Sorry, the diff of this file is not supported yet
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
48462