Skip to content

Commit f87458e

Browse files
committed
fix(npm): 修复 npm 包编译文件不全的问题
1 parent ff6c4f0 commit f87458e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const path = require('path');
1717

1818
const componentData = require('./until');
1919
const result = `{common/*,core/*,behaviors,utils,${componentData()}}`;
20-
const isCustom = (result !== '{common/*,behaviors,utils,}');
20+
const isCustom = (result !== '{common/*,core/*,behaviors,utils,}');
2121

2222
const distPath = path.resolve(__dirname, '../dist');
2323
const examplePath = path.resolve(__dirname, '../examples/dist');

0 commit comments

Comments
 (0)