瀏覽代碼

update export

Andrey Titovskiy 3 年之前
父節點
當前提交
d02b8b5912
共有 3 個文件被更改,包括 6 次插入4 次删除
  1. 1 1
      build/index.js
  2. 1 1
      build/index.js.map
  3. 4 2
      src/index.js

File diff suppressed because it is too large
+ 1 - 1
build/index.js


File diff suppressed because it is too large
+ 1 - 1
build/index.js.map


+ 4 - 2
src/index.js

@@ -318,7 +318,7 @@ const handler = {
   }
 };
 
-export const brandingObject = {
+const brandingObject = {
   'unicraft': Unicraft,
   'einstein': Einstein,
   'oktopolygraphist': Octopolygraphist,
@@ -634,4 +634,6 @@ export const brandingObject = {
   'vashden': Vashden,
 }
 
-export const brandingMapping = new Proxy(brandingObject, handler);
+const brandingMapping = new Proxy(brandingObject, handler);
+
+export default { brandingMapping, brandingObject }