ci-plus 1.2.1 → 1.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.ts +3 -1
- package/package.json +1 -1
- package/src/utils/index.ts +8 -2
package/index.ts
CHANGED
package/package.json
CHANGED
package/src/utils/index.ts
CHANGED
|
@@ -1,4 +1,10 @@
|
|
|
1
1
|
export { default as withInstall } from './withinstall/index';
|
|
2
2
|
|
|
3
|
-
export { default as setCardList } from './cardPrint'; // 导入默认的导出
|
|
4
|
-
export * from './cardPrint'; // 导入所有导出(不包含默认导出)
|
|
3
|
+
// export { default as setCardList } from './cardPrint'; // 导入默认的导出
|
|
4
|
+
// export * from './cardPrint'; // 导入所有导出(不包含默认导出)
|
|
5
|
+
|
|
6
|
+
import { cardPrint, setCardList } from "./cardPrint";
|
|
7
|
+
import apis from "./baseApi";
|
|
8
|
+
|
|
9
|
+
// 导出 cardPrint 和 apis
|
|
10
|
+
export default { cardPrint, setCardList, apis };
|