mirror of
https://github.com/selfxyz/self.git
synced 2026-01-14 09:08:03 -05:00
* Modernize qrcode build * chore(qrcode): add lint helpers * fix sdk qrcode * add new qrcode ci * fix formatting * qrcode fixes * fixes * fixes rd2 * enable corepack * enable corepack * build caching * update caching * cr feedback
28 lines
621 B
JavaScript
28 lines
621 B
JavaScript
export const shimConfigs = [
|
|
{
|
|
shimPath: 'components/LED',
|
|
targetPath: '../../esm/components/LED.js',
|
|
name: 'components/LED',
|
|
},
|
|
{
|
|
shimPath: 'components/SelfQRcode',
|
|
targetPath: '../../esm/components/SelfQRcode.js',
|
|
name: 'components/SelfQRcode',
|
|
},
|
|
{
|
|
shimPath: 'utils/utils',
|
|
targetPath: '../../esm/utils/utils.js',
|
|
name: 'utils/utils',
|
|
},
|
|
{
|
|
shimPath: 'utils/styles',
|
|
targetPath: '../../esm/utils/styles.js',
|
|
name: 'utils/styles',
|
|
},
|
|
{
|
|
shimPath: 'utils/websocket',
|
|
targetPath: '../../esm/utils/websocket.js',
|
|
name: 'utils/websocket',
|
|
},
|
|
];
|