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 @@ -5,5 +5,9 @@ export default createPackage((pkg) => {
55 pkg . entry ( { root : './src/index.ts' } ) ;
66 pkg . entry ( { name : 'checkout' , root : './src/checkout/index.ts' } ) ;
77 pkg . entry ( { name : 'point-of-sale' , root : './src/point-of-sale/index.ts' } ) ;
8+ pkg . entry ( {
9+ name : 'customer-account' ,
10+ root : './src/customer-account/index.ts' ,
11+ } ) ;
812 pkg . use ( defaultProjectPlugin ( ) ) ;
913} ) ;
Original file line number Diff line number Diff line change 2323 "esnext" : " ./point-of-sale.esnext" ,
2424 "import" : " ./point-of-sale.mjs" ,
2525 "require" : " ./point-of-sale.js"
26+ },
27+ "./customer-account" : {
28+ "types" : " ./build/ts/customer-account/index.d.ts" ,
29+ "esnext" : " ./customer-account.esnext" ,
30+ "import" : " ./customer-account.mjs" ,
31+ "require" : " ./customer-account.js"
2632 }
2733 },
2834 "typesVersions" : {
3238 ],
3339 "point-of-sale" : [
3440 " ./build/ts/point-of-sale/index.d.ts"
41+ ],
42+ "customer-account" : [
43+ " ./build/ts/customer-account/index.d.ts"
3544 ]
3645 }
3746 },
You can’t perform that action at this time.
0 commit comments