File tree Expand file tree Collapse file tree 6 files changed +4777
-6901
lines changed
Expand file tree Collapse file tree 6 files changed +4777
-6901
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ const BundleAnalyzerPlugin = require("webpack-bundle-analyzer").BundleAnalyzerPl
44
55module . exports = ( env , argv ) => {
66 const isProduction = argv . mode === "production" ;
7- const isAnalyze = process . env . ANALYZE === ' true' || ( env && env . analyze ) ;
7+ const isAnalyze = process . env . ANALYZE === " true" || ( env && env . analyze ) ;
88
99 const plugins = [
1010 new HtmlWebpackPlugin ( {
Original file line number Diff line number Diff line change 77 "composite" : true ,
88 "declaration" : true ,
99 "baseUrl" : " ." ,
10- "paths" : {
11- "@e-board/*" : [" ../*/dist/esm" ]
12- }
10+ "paths" : {}
1311 },
1412 "include" : [" src" ],
1513 "references" : [{ "path" : " ../board-utils" }, { "path" : " ../board-core" }]
Original file line number Diff line number Diff line change 1+ export type { IService } from "./src/types" ;
2+ export { default as EBoard } from "./src/board" ;
3+ export * from "./src/services" ;
4+ export * from "./src/plugins" ;
5+ export * from "./src/elements/baseElement/baseCtrlElement" ;
6+ export * from "./src/elements/rectElement/ctrlElement" ;
Original file line number Diff line number Diff line change 22 "name" : " @e-board/board-core" ,
33 "version" : " 1.0.0" ,
44 "private" : true ,
5+ "main" : " dist/cjs/index.js" ,
6+ "module" : " dist/esm/index.js" ,
7+ "types" : " index.d.ts" ,
58 "scripts" : {
69 "dev" : " father dev" ,
710 "build" : " father build"
Original file line number Diff line number Diff line change 66 "composite" : true ,
77 "declaration" : true ,
88 "baseUrl" : " ." ,
9- "paths" : {
10- "@e-board/*" : [" ../*/dist/esm" ]
11- }
9+ "paths" : {}
1210 },
1311 "include" : [" src" ],
1412 "references" : [{ "path" : " ../board-utils" }]
You can’t perform that action at this time.
0 commit comments