Ver código fonte

update export

Andrey Titovskiy 3 anos atrás
pai
commit
d02b8b5912
3 arquivos alterados com 6 adições e 4 exclusões
  1. 1 1
      build/index.js
  2. 1 1
      build/index.js.map
  3. 4 2
      src/index.js

Diferenças do arquivo suprimidas por serem muito extensas
+ 1 - 1
build/index.js


Diferenças do arquivo suprimidas por serem muito extensas
+ 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 }