rollup-plugin-vue-jsx-compat
Advanced tools
Comparing version 0.0.2 to 0.0.4
@@ -5,2 +5,16 @@ # Changelog | ||
### [0.0.4](https://github.com/xxholly32/rollup-plugin-vue-jsx/compare/v0.0.3...v0.0.4) (2021-06-07) | ||
### Bug Fixes | ||
* 🐛 fix declare bug ([caef452](https://github.com/xxholly32/rollup-plugin-vue-jsx/commit/caef45238d139649350d921f0b5ab6f2d4e751c7)) | ||
### [0.0.3](https://github.com/xxholly32/rollup-plugin-vue-jsx/compare/v0.0.2...v0.0.3) (2021-06-07) | ||
### Bug Fixes | ||
* add missing rollup plugin type declaration ([8445a25](https://github.com/xxholly32/rollup-plugin-vue-jsx/commit/8445a25be6bba4b22de294e1117a30106ee69490)), closes [#2](https://github.com/xxholly32/rollup-plugin-vue-jsx/issues/2) | ||
### [0.0.2](https://github.com/xxholly32/rollup-plugin-vue-jsx/compare/v0.0.1...v0.0.2) (2020-09-21) | ||
@@ -7,0 +21,0 @@ |
import { FilterPattern } from '@rollup/pluginutils'; | ||
import { Plugin } from 'rollup'; | ||
@@ -9,3 +10,5 @@ declare type Options = { | ||
}; | ||
declare function vueJsx(options: Options): Plugin; | ||
export default vueJsx; | ||
export { Options }; |
@@ -11,3 +11,2 @@ 'use strict'; | ||
}, options); | ||
console.log(options.jsxCompatPath); | ||
const filter = pluginutils.createFilter(options.include, options.exclude); | ||
@@ -14,0 +13,0 @@ return { |
{ | ||
"name": "rollup-plugin-vue-jsx-compat", | ||
"version": "0.0.2", | ||
"version": "0.0.4", | ||
"main": "dist/index.js", | ||
@@ -5,0 +5,0 @@ "types": "dist/index.d.ts", |
@@ -1,2 +0,3 @@ | ||
import { createFilter, FilterPattern } from "@rollup/pluginutils"; | ||
import { FilterPattern } from "@rollup/pluginutils"; | ||
import { Plugin } from "rollup"; | ||
@@ -8,2 +9,6 @@ export type Options = { | ||
jsxCompatPath?: string; | ||
}; | ||
}; | ||
declare function vueJsx(options: Options): Plugin; | ||
export default vueJsx; |
@@ -14,3 +14,2 @@ import { join } from "path"; | ||
); | ||
console.log(options.jsxCompatPath); | ||
@@ -17,0 +16,0 @@ const filter = createFilter(options.include, options.exclude); |
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
15488
275