File tree Expand file tree Collapse file tree
packages/ui-extensions-tester Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import {defaultProjectPlugin} from '../../config/loom';
33
44export default createPackage ( ( pkg ) => {
55 pkg . entry ( { root : './src/index.ts' } ) ;
6+ pkg . entry ( { name : 'admin' , root : './src/admin/index.ts' } ) ;
67 pkg . entry ( { name : 'checkout' , root : './src/checkout/index.ts' } ) ;
78 pkg . entry ( { name : 'point-of-sale' , root : './src/point-of-sale/index.ts' } ) ;
89 pkg . entry ( {
Original file line number Diff line number Diff line change 1212 "import" : " ./index.mjs" ,
1313 "require" : " ./index.js"
1414 },
15+ "./admin" : {
16+ "types" : " ./build/ts/admin/index.d.ts" ,
17+ "esnext" : " ./admin.esnext" ,
18+ "import" : " ./admin.mjs" ,
19+ "require" : " ./admin.js"
20+ },
1521 "./checkout" : {
1622 "types" : " ./build/ts/checkout/index.d.ts" ,
1723 "esnext" : " ./checkout.esnext" ,
3339 },
3440 "typesVersions" : {
3541 "*" : {
42+ "admin" : [
43+ " ./build/ts/admin/index.d.ts"
44+ ],
3645 "checkout" : [
3746 " ./build/ts/checkout/index.d.ts"
3847 ],
7281 " build" ,
7382 " src" ,
7483 " index.*" ,
84+ " admin.*" ,
7585 " checkout.*" ,
86+ " point-of-sale.*" ,
87+ " customer-account.*" ,
7688 " README.md"
7789 ]
7890}
You can’t perform that action at this time.
0 commit comments