moves ofac and protocol store (#1012)

* move ofact tree fetch to common

* move protocol store to the msdk, fix some dependencies on msdk
This commit is contained in:
Aaron DeRuvo
2025-09-09 13:31:43 +02:00
committed by GitHub
parent 75dee90e41
commit 3aabfc984a
24 changed files with 91 additions and 127 deletions

View File

@@ -41,6 +41,7 @@ const distPackageJson = {
'.': './esm/index.js',
'./browser': './esm/browser.js',
'./constants/analytics': './esm/constants/analytics.js',
'./stores': './esm/stores.js',
},
};
try {

View File

@@ -6,4 +6,5 @@
export const shimConfigs = [
{ shimPath: 'browser', targetPath: '../esm/browser.js', name: 'browser' },
{ shimPath: 'constants/analytics', targetPath: '../../esm/constants/analytics.js', name: 'constants/analytics' },
{ shimPath: 'stores', targetPath: '../esm/stores.js', name: 'stores' },
];