Skip to content

Commit b721f16

Browse files
committed
fix bounld path
1 parent 509c795 commit b721f16

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

src/index.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ export * from "./core";
22
export * from "./oauth2";
33
export * from "./request";
44
export * from "./utils";
5-
export * from "./request/types";
6-
export * from "./oauth2/session";
7-
5+
export * from "./request";
6+
export * from "./oauth2";
7+
export * from "./aliyun";
8+
export * from "./minio";

webpack.config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ const htmlWebpackPlugin = new HtmlWebpackPlugin({
66

77
module.exports = {
88
target:"web",
9-
entry: path.join(__dirname, "src/minio/index.ts"),
9+
mode: "development",
10+
entry: path.join(__dirname, "src/index.ts"),
1011
output: {
1112
path: path.join(__dirname, "example/dist"),
1213
filename: "bundle.js",

0 commit comments

Comments
 (0)