File tree 3 files changed +13
-4
lines changed
3 files changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,14 @@ function createEntry(options) {
20
20
21
21
const config = {
22
22
input,
23
- external : [ 'vue' , 'lodash/mergeWith' ] ,
23
+ external : [
24
+ 'vue' ,
25
+ 'lodash/mergeWith' ,
26
+ 'lodash/camelCase' ,
27
+ 'lodash/upperFirst' ,
28
+ 'lodash/kebabCase' ,
29
+ 'lodash/flow'
30
+ ] ,
24
31
plugins : [ resolve ( ) ] ,
25
32
output : {
26
33
banner,
Original file line number Diff line number Diff line change 1
1
import { transformVNodeArgs , h } from 'vue'
2
- import kebabCase from 'lodash/kebabCase'
3
2
4
- import { pascalCase } from './utils'
3
+ import { pascalCase , kebabCase } from './utils'
5
4
6
5
interface IStubOptions {
7
6
name ?: string
Original file line number Diff line number Diff line change 1
1
import camelCase from 'lodash/camelCase'
2
2
import upperFirst from 'lodash/upperFirst'
3
+ import kebabCase from 'lodash/kebabCase'
3
4
import flow from 'lodash/flow'
4
5
5
- export const pascalCase = flow ( camelCase , upperFirst )
6
+ const pascalCase = flow ( camelCase , upperFirst )
7
+
8
+ export { kebabCase , pascalCase }
You can’t perform that action at this time.
0 commit comments