babel-plugin-kimport
Advanced tools
Comparing version 1.2.2 to 1.2.3
@@ -5,2 +5,4 @@ # Changelog | ||
### [1.2.3](https://github.com/SoldierAb/babel-plugin-kimport/compare/v1.2.2...v1.2.3) (2020-01-21) | ||
### [1.2.2](https://github.com/SoldierAb/babel-plugin-kimport/compare/v1.2.1...v1.2.2) (2020-01-21) | ||
@@ -7,0 +9,0 @@ |
@@ -70,3 +70,3 @@ "use strict"; | ||
currentConfigInstance.camel2UnderlineComponentName = typeof currentConfigInstance.camel2UnderlineComponentName === 'undefined' ? false : currentConfigInstance.camel2UnderlineComponentName; | ||
currentConfigInstance.camel2DashComponentName = typeof currentConfigInstance.camel2DashComponentName === 'undefined' ? false : currentConfigInstance.camel2DashComponentName; | ||
currentConfigInstance.camel2DashComponentName = typeof currentConfigInstance.camel2DashComponentName === 'undefined' ? true : currentConfigInstance.camel2DashComponentName; | ||
@@ -73,0 +73,0 @@ if (libraryName === source.value && !types.isImportDefaultSpecifier(specifiers[0]) && !types.isImportNamespaceSpecifier(specifiers[0])) { |
{ | ||
"name": "babel-plugin-kimport", | ||
"version": "1.2.2", | ||
"version": "1.2.3", | ||
"description": "A component modular import plugin for babel ", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
15743