Andrey Titovskiy 3 gadi atpakaļ
vecāks
revīzija
d02b8b5912
3 mainītis faili ar 6 papildinājumiem un 4 dzēšanām
  1. 1 1
      build/index.js
  2. 1 1
      build/index.js.map
  3. 4 2
      src/index.js

Failā izmaiņas netiks attēlotas, jo tās ir par lielu
+ 1 - 1
build/index.js


Failā izmaiņas netiks attēlotas, jo tās ir par lielu
+ 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 }